如何將文本對齊到div中大<a>
元素的右下角?將文字對齊到一個大<a>元素的底部
這是我的,但我想在框的底部的文字。我搜索了很多,一切都沒有爲我工作:
<div class="thumbnail">
<a href="http://link.com">Link to somewhere</a>
</div>
與下面的CSS:
.thumbnail{
width: 200px;
height: 200px;}
.thumbnail a{
display: block;
height: 100%;
width: 100%;
text-align: right;
background-color: lightgrey;}
謝謝
謝謝,但與此問題是這樣的:http://stackoverflow.com/questions/1827965/is-putting-a-div-inside-an-anchor-ever-correct – Nicolas
陷阱。試試我的編輯:) – hellohellosharp
這確實有用!但它仍不是一個非常優雅的解決方案。我會認爲必須有一種方法將其真正地對齊到底部... – Nicolas