XUL box for div element contained an inline br child, forcing all its children to be wrapped in a block.
这只是一个警告,但不是致命错误,网页不会出现任何问题,但它发生在我的 firebug 控制台中,这很烦人,如何防止这种情况发生?或者如何忽略萤火虫中的这些错误?
我怀疑这是因为:
#top_icon01{
position:relative;
background-image : url('../hill_header/img/top_Icon_i01.png');
background-repeat : no-repeat;
background-size : 56px 56px;
background-position: 50% 20px;
width : 172px;
height : 130px;
padding-top : 25px;
text-align: center;
display:block;
display:-webkit-box;
display:-moz-box;
-webkit-box-pack:center;
-webkit-box-align:center;
-moz-box-pack:center;
-moz-box-align:center;
}
我提供了更多细节:我没有勾选 show chrome error,看到这很烦人。 如果我删除顶部标题:
<div id='topHeader'>
<section id='top_middle_panel'>
<div id='top_ryan'>
<span class='float'>
<div id='top_icon01' class='top_icons'>
<h1>Design</h1><br><h6>Create Value</h6>
</div>
</span>
<span class='float'>
<div id='top_icon02' class='top_icons'>
<h1>Multimedia</h1><br><h6>Amazing Presentation</h6>
</div>
</span>
<span class='float'>
<div id='top_icon03' class='top_icons'>
<h1>Marketing</h1><br><h6>Connect to The World</h6>
</div>
</span>
</div>
</section>
</div>
没有更多的错误。