Home >Web Front-end >HTML Tutorial >How do I create blank lines in IE's compatibility mode? _html/css_WEB-ITnose
A blank line is generated between the two DIVs. This is normal in high-speed mode or other browsers, but in the compatibility mode of the IE kernel, there is this blank line, as shown in the picture below:
HTML code:
<div class="topright"><div class="zhongbox"><h2>最新文章</h2></div><div class="rewen"><ul class="ico3"> <li><a href="#" target="_blank">测试</a></li><li><a href="#" target="_blank">测试</a></li><li><a href="#" target="_blank">测试</a></li><li><a href="#" target="_blank">测试</a></li><li><a href="#" target="_blank">测试</a></li></ul></div></div>
.topright{width:298px;border:1px solid #DBDBDB;float:right;overflow:hidden;}.zhongbox{width:100%;height:20px;line-height:20px;background-color:#EBEBEB;border-bottom:1px solid #DADADA;}.zhongbox h2{padding-left:10px;font-weight:bold;color:#CD8500;font-size:13px;}.rewen{width:100%;overflow:hidden;zoom:1;height:100%;clear:both;}.ico3{float:left;margin:4px 0px;}.ico3 li{padding-left:16px;background:url(../images/ico-3.gif) 7px 11px no-repeat;height:23px;line-height:23px;overflow:hidden;width:100%;}
under ie6 After testing, I haven’t seen your bug. See: http://jsfiddle.net/TUnvv/
Check your dede template to see if there is any problem with the php part, causing problems in html output.
Tested under IE6 and didn’t see your bug, see: http://jsfiddle.net/TUnvv/
Check your dede template to see if there is any problem with the php part, causing the html output Something went wrong.
The above code is the code output by my front-end. It shouldn’t be a problem with the back-end template~~ It’s really strange.~
Add
2a452feeee5f9c577700893f573c87172cacc6d41bbb37262a98f745aa00fbf0
Use firebug to check the HTML tags under IE6.
The font size is set on the current element of the text, and the outer font size is set to 0 font-size:0
The font size is set on the current element of the text, and the outer font size is set to 0 Just set the font size to 0 font-size:0
After testing, it still has no effect, thank you for your reply~~
Thank you very much for your replies. After testing one by one, I finally found that it is due to the previous code. Improper writing caused the layer to float, which is not a problem with this code. Thank you again for your answers~~·