3
我有一個圖像在側面的div和超鏈接旁邊。問題在於超鏈接顯示在圖像的最底層。我想在圖像的中心顯示它。非常基本的CSS高度問題
HTML:
<div class="main">
<img class="image" src="http://aux.iconpedia.net/uploads/16149178162137949115.png" alt="smiley" />
<a class="link" href="#">move it up in the center to the smiley</a>
</div>
CSS:
.main{
border:1px solid red;
}
.image{
border:1px solid green;
}
.link{
/*height:30px;*/
}
的jsfiddle:
[如何將文字放在圖像中間]的可能重複(http://stackoverflow.com/questions/4580880/how-to-put-text-on-the-middle-of-an-image ) – mercator