HippySunshine
Senior Member
Probably quite a simple answer, but how do I get my DIV's to flow horizontaly to create a horizontal website? 
Thanks x
Thanks x
div { float:left; }ordiv.horizontal { float:left; }
Onartis said:![]()
Define it in your css, either make all divs float left or just to a certain class.
Resulting in <div class="horizontal"></div> for your htmlCode:div { float:left; }ordiv.horizontal { float:left; }
It's probably wiser to pick the last option because I'm not sure if floating your container div will work out the way you want it to.