Сообщение от taktak
|
а на javascript (без подключения библиотек) есть какое-то решение ?
|
Может как-то так,
<html>
<head>
<style>
.right {
float: right;
}
</style>
</head>
<body>
<table border='1'>
<tr>
<td>0</td><td>0</td>
</tr>
</table>
<table border='1'>
<tr>
<td>1</td><td>1</td>
</tr>
</table>
<table border='1'>
<tr>
<td>2</td><td>2</td>
</tr>
</table>
<table border='1'>
<tr>
<td>3</td><td>3</td>
</tr>
</table>
<script>
c=0
;[].forEach.call(document.querySelectorAll("table"), function(el){if(c++%2==0) el.className="right"})
</script>
</body>
</html>
?