ナビゲーションリンクをホバリングするときに、テキストを含む背景画像を表示しようとしていますが、何らかの理由で画像が表示されません。
ここにタイトル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>
そしてフィドル