I am trying to float elements left. Here is my css:
width: 320px;
float: left;
border: 1px solid #ccc;
margin-top: 10px;
margin-right: 10px;
border-radius: 5
Is this updated Fiddle this what you're looking for?
HTML:
.one {
float: left;
width: 50px;
background-color: lightblue;
}
.two {
float: left;
width: 50px;
background-color: pink;
}
.oneone {
float: left;
width: 50px;
background-color: orange;
}
.onetwo {
float: left;
width: 50px;
background-color: lightgreen;
}
oneone
again
onetwo
again
two
etfgb
sfsd
update
Check the updated Fiddle in the top of my answer.