基本上我在div的底部找到了我喜歡的文本,但問題在於它是左對齊,我希望它位於div的中心。居中對齊文本到div的底部
CSS3
#article-footer {
width: 100%;
margin: 0 auto;
}
#article-footer {
position: relative;
width: 70%;
float: left;
font-weight: bold;
font-size: 23px;
color: #354175;
}
#article-footer span{
position:absolute;
bottom: 0;
}
使用文本對齊:中心爲 – Rex
你有HTML代碼? –
是的HTML5,但CSS幾乎可以解釋它,文本只是三個字「買*賣*貿易」 – SecretWalrus