我在button
標記中包含的span
的對齊方式有問題。HTML-CSS:跨度按鈕對齊內部
我以前已經做過這樣的事情,它工作。事實上,它是相同的CSS,但大小不同。
問題是,包含span
似乎是對齊的權利。
CSS:
#closePreviewBtn {
position: absolute;
height: 24px;
width: 24px;
right: 0;
background: #B9DEFD;
border-top: solid 1px #333333;
border-left: solid 1px#333333;
border-right: solid 1px #333333;
border-bottom: solid 1px #333333;
border-radius: 4px;
}
#closePreviewBtn .close {
display: inline-block;
position: relative;
height: 20px;
width: 20px;
background: url(../imagenes/close.png) no-repeat center;
padding: 0;
/*right: 2px;
bottom: 1px;*/ //This fixes the problem but it's manual
}
HTML:
<html>
<body>
<button id="closePreviewBtn" name="closePreviewBtn"><span class="close"></span></button>
</body>
</html>
非常感謝!
你已經在你的'#closePreviewBtn它靠右側{右:0; }'。所以,這個問題呢? – ygssoni
我不是指按鈕。該按鈕應該右對齊。我是指按鈕內的內容,在這種情況下是X圖像。 – JorgeeFG