我正在尝试在标题中显示徽标。它有一个带有类bannerPicture的div,我在其中指定了徽标的位置:
.bannerPicture
{
width: 213px;
height:128px;
background: url(logo_uhhipl.gif) repeat 0px 3px;
}
我的html如下:
<header>
<div id="showlogo" class="bannerPicture">
</div>
</header>
我的问题是,如果我在 div“showlogo” 中添加任何文本,则徽标会出现在文本后面,如果我像上面那样将其留空,则不会显示。任何建议表示赞赏。
是因为我没有里面的div吗?