我有从我的 Icecast 服务器收到的歌曲标题,并且总是根据播放列表而变化。
显然,有些标题比其他标题长,反之亦然。
我试图使该框中的文本居中,因此无论标题长度如何,它都始终位于中间。
我怎样才能做到这一点?
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;
}