我從我的Icecast服務器收到歌曲標題,並且總是根據播放列表進行更改。將動態文本置於CSS中心
顯然有些標題比其他標題長,反之亦然。
我試圖將文本居中放在那個盒子裏,所以它總是適合在中間,不管標題的長度。
我該如何做到這一點?
的DIV + CSS:
.now_playing div {
white-space:nowrap;
font-size:13px;
line-height:24px;
position: relative;
min-height: 30px;
padding-left: 100px;
text-align: center;
right: 36px;
}
錨CSS:
.now_playing a {
font-family: HelveticaNeue-Light, "Helvetica Neue Light", "Helvetica Neue", sans-serif;
font-size: 12px;
color: #fff;
text-decoration: none;
position: absolute;
top: 50%; left: 0;
width: 90px;
height: 30px;
margin-top: -15px;
}
只需從標記中移除絕對位置即可。 – imperfectinfinity
你試過了.now_playing {margin:0 auto; }而不是左:0 – Tdelang