html - Text wrapping issues inside of a floated div -
i having trouble getting text on right side of box wrap 2 lines when screen width narrow show of text on 1 line. instead, entire right side bumps down below left.
how wrap 2 lines? here's fiddle
.box { height: 80px; clear: both; } .left { width: 90px; float: left; margin-right: 8px; height: 80px; border: 1px solid #ccc; } .right { float: left; }
all have on .right add width maybe of 40% or , should text wrap pages gets smaller.
.right { float: left; width: 40%; }
Comments
Post a Comment