Topic: two columns (divs) inside another div
Ok, aparently there is a bug that doens't allow this
.main{
width:500px;
margin:auto;
}
.left{
width:270px;
fload:left;
}
.right{
width:150px;
float:right;
}
<div class="main">
<div class="left"></div>
<div class="right"></div>
</div>
The right div wont show as a sidebar, instead it goes under the left one.
What's the workaround i should go for?