Heim > Artikel > Web-Frontend > 这个什么问题_html/css_WEB-ITnose
<div id = "top"> <span id = "logo"></span> </div>
#top{ background:url(../images/top_bg.png); width: 100%; height: 125px;}#logo{ background:url(../images/logo.png); width: 200px; height:125px;}
span是行内元素,不能设置width、height值,改用div即可。
在#logo中添加display:block;就OK了,因为span是内联级元素,设置width没有用,所以需要转化成块元级元素