Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS One div doesn’t float left Re: One div doesn’t float left

#132919
rodolpheb
Participant

the problem is created by the H2 which height makes the floating complicated.
Try either solution below:

h2{
font-weight:normal;
padding-bottom:10px;
width:200px;
overflow: hidden;
white-space:nowrap;
text-overflow: ellipsis;}

h2 {
width:300px;
height:60px;}