当我悬停导航链接时,我试图显示带有一些文本的背景图像,但由于某种原因,图像不会显示。
这里的一些标题 css
.navigation h1 {
position: absolute;
right: 22px;
top: -7px;
display: none;
padding: 4px 20px 4px 7px;
color: #fff;
white-space: nowrap;
background: transparent url('http://i.imgur.com/dbnCNPk.png') 100% 50% no-repeat;
}
HTML
<div class="navigation">
<ul>
<li>
<h1>one</h1>
<a href="#hem" class="active">one</a> </li>
<li> <h1>two</h1>
<a href="#two">two</a></li>
<li> <h1>three</h1>
<a href="#three">three</a></li>
</ul>
</div>
还有一个小提琴