Solution for one character at the end of IE6 overflow!
HTML code:
<div>
<img src=”http://www.lassaquarium.com/tpl/lassaquarium/images/about/qq.jpg” width=”167″ height=”30″ alt=”qq customer service 609200709″>
<img src=”http://www.lassaquarium.com/tpl/lassaquarium/images/about/phone.jpg” width=”204″ height=”30″ alt=”Consultation telephone 076022283438″>
<div>Factory address Xiaolan Town, Zhongshan City, Guangdong Province, Jiuzhouji Second Industrial Zone, Xingzhou Road, Lay’s Shui aquarium</div>
</div>
css code:
.main-con .address {
width: 594px;
float: left;
height: 50px;
line-height: 50px;
color: #656565;
font-weight: bold;
font-size: 16px;
padding-left: 106px;
overflow: hidden;
}
Modify the css code to:
.main-con .address {
float: left;
height: 50px;
line-height: 50px;
color: #656565;
font-weight: bold;
font-size: 16px;
padding-left: 106px;
overflow: hidden;
}
That is, to remove the width value, to ensure the newline, the width of the previous line needs to be full, and there is nothing else!
