我想讓我的鏈接在中間垂直對齊中心,我的標誌垂直對齊在中間,但如右下圖所示。我可以讓圖像完美地工作。但我無法獲得鏈接垂直對齊的中間。在圖像旁邊的垂直對齊按鈕
這也將是全寬。
.footer-logo {
display: block;
position: absolute;
right: 50px; \t
margin-top: 30px;
}
.footer-main {
height: 200px;
background-image: url(../images/backgrounds/bg-image.jpg);
background-color: grey; \t
position: relative;
text-align: center;
vertical-align: middle;
}
<div class="footer-main">
<a class="button" href="#">My test link here</a>
<img src="http://placehold.it/100" alt="" class="footer-logo">
</div>
@米哈伊 - TLOOK在我的形象..按鈕看起來不錯現在但徽標不在中間 – Case
@DataDev一定要刪除margin-top:30px,就像我在代碼中所做的那樣。 –
@ mihai-tlook如果你運行你的代碼snip圖像對齊在底部而不是中間 – Case