ホバーすると、テキスト リンクに下線が表示されます。これは Bootstrap のデフォルトです。
リンクが特定のdiv内にない限り、これを保持したい。
私が試したコード (およびいくつかのバリエーション) は機能しません。
HTML:
<div class="wall-entry span5">
<a href="">
<img src="http://www.placehold.it/290x163" />
<div class="wall-address">
<p>Burgundy Street</p>
<p>New Orleans, LA</p>
<p>USA</p>
</div>
</a>
</div>
私のCSS:
.wall-entry {
background-color: @black;
position: relative;
img {
opacity:0.4;
filter:alpha(opacity=40); /* For IE8 and earlier */
}
div {
position: absolute;
left: 10px;
bottom: 10px;
p {
line-height: 18px;
margin: 0;
font-family: Neuzit Heavy;
font-size: 18px;
color: white;
text-decoration: none;
}
}
}
div.wall-entry:hover img {
opacity:1;
filter:alpha(opacity=100); /* For IE8 and earlier */
}
a div.wall-entry {text-decoration: none;}
簡単なメモ: 私はテストしましたa {text-decoration: none;}
が、これは機能します。とはいえ、すべてを変えたいわけではありません。この特定のケースのリンクのみ。