Home › Forums › CSS › One div doesn’t float left › Re: One div doesn’t float left
April 23, 2013 at 4:24 pm
#132919
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;}