我想橫向居中在一個標籤內。問題是我無法設置跨度的高度和寬度。我的標記如下:水平中心<span>裏面<a>
<div class="footer">
<a href="#">
<span>Show/Hide</span>
</a>
</div>
而CSS:
.footer {position:absolute; bottom:0; width:100%;}
.footer a {display:block; background:orange; text-align:center;}
.footer a span {background:#FFF; font-size:12px; width:100px;}
我用盡了一切,但覺得我需要某種形式的浮動的地方,但不知道。非常感謝幫助! :-)
以我爲中心http://jsfiddle.net/j08691/tqwRp/ – j08691