0
how to set 2 div side by side??
set div in horizontal or vertical attachments
1 Antwort
+ 1
You can do that by floating the elements.
For example:
<div width="100px" style="float:left;border:1px solid red">
Some content
</div>
<div width="100px" style="float:left;border:1px solid blue">
Some content
</div>