DIV和CSS排版中製作細線條的方法小結

來源:互聯網
上載者:User

今天製作div的高度控制的時候發現IE下控制div的高度很小的時候無效,特意查了一下相關文章。

最終有瞭解決方案,參考下面文章:

如果要製作一條高度小於12PX(大約)的線條,在IE中會顯示出高於實際高度的,看下面。

複製代碼 代碼如下:<style>
.line{
background: #CCCCCC;
height: 6px;
}</style>
<div class="line"></div>

可看出實際高度大於6PX,這也算是IE的一個BUG吧。以下三種方法可解決這個問題,推薦使用第一種方法。
1:

複製代碼 代碼如下:<style>
.line11{
background: #CCCCCC;
height: 6px;
overflow: hidden;
}</style>
<div class="line11"></div>

2. div之間要加個空格 註:IE5.0 無效
複製代碼 代碼如下:<style>
.line12{
background: #336699;
line-height: 6px;
}</style>
<div class="line12"> </div>

3:

複製代碼 代碼如下:<style>
.line13{
background: #CC0000;
height: 6px;
font-size: 1px;
}</style>
<div class="line13"></div>
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.