- <style>
- .aa{ height:30px;line-height:30px;font:12px Arial;width:500px; background:#CCECEC; }
- .aa span{ float:right;}
- </style>
- <body>
- <div class="aa" style="">這里是測試內容</div>
顯示效果如下:
這個顯示很明顯line-height屬性沒有生效,怎樣處理這個問題呢
是因為line-height屬性要放在font屬性之后才能生效,將line-height屬性放在font屬性后面就可以 了
代碼如下:
- <style>
- .aa{ height:30px;font:12px Arial;width:500px; background:#CCECEC;line-height:30px; }
- .aa span{ float:right;}
- </style>
- <body>
- <div class="aa" style="">這里是測試內容</div>
這樣就顯示正常了
上一篇 360瀏覽器css樣式不兼容分析
下一篇 ecshop廣告調用方法總結