<div id="block1">1</div>
<div id="block2">2</div>
<div id="block3">3</div>
Как сделать таблицу в CSS?
<table>
<tr>
<td rowspan="2">1</td><td>2</td>
</tr>
<tr>
<td>3</td>
</tr>
</table>
Как такую же сделать блоками <div> в CSS?
HTML код:
Код:
CSS:
Код:
#block1, #block2, #block3 {position:relative;float:left;}
#block1 {height:100px;width:50px;background:red;}
#block2 {height:50px;width:50px;background:blue;}
#block3 {height:50px;width:50px;background:green;}
#block1 {height:100px;width:50px;background:red;}
#block2 {height:50px;width:50px;background:blue;}
#block3 {height:50px;width:50px;background:green;}