iT邦幫忙

2019 iT 邦幫忙鐵人賽

DAY 4
0
自我挑戰組

CSS、JS-30天研究筆記系列 第 5

【day5】關於CSS margin屬性

  • 分享至 

  • xImage
  •  

一、特性:
1.支持負數值
2.一般情況下,對於元素的可視尺寸沒有影響
3.支持百分比值,且上下左右均是相對于父級的「寬度」計算。
4.某些情況下,margin-top和margin-bottom會重疊

二、應用(一):利用margin-bottom實現分欄等高佈局
這在分欄且具背景色或分隔線的應用中很實用,原理是利用padding-bottom正值延伸高度、margin-bottom負值還原空間距離,必搭配父級設置overflow: hidden隱藏多餘的背景。

<style>
    .box {
     overflow: hidden;
    }
    .left-box,
    .right-box {
     margin-bottom: -999px;
     padding-bottom: 999px;
     width: 50%;
     float: left;
    } 
    .left-box{
      background-color: #ffa;
    }
    .right-box{
      background-color: #aaf;
    }
  </style>
<body>
  <div class="box">
    <div class="left-box">
      Compass Preprocessor, compiles .scss, .sass and refreshes page when file is compiled Less Preprocessor, compiles .less and refreshes page when file is compiled Sass Preprocessor, compiles .scss, .sass with the latest installed sass version and refreshes page when file is compiled CoffeeScript Preprocessor, compiles .coffee and refreshes page when file is compiled Simple Reload, refresh page when file is saved
Simple Reload with delay(400ms), wait 400ms then refresh page, when file is saved
    </div>
    <div class="right-box">
      Compass Preprocessor, compiles .scss, .sass and refreshes page when file is compiled Less Preprocessor, compiles .less and refreshes page when file is compiled
    </div>
  </div>
</body>

三、關於margin-top和margin-bottom重疊特性
A:重疊情境:
1.相鄰兄弟元素
2.父級和第一個/最後一個子元素。
3.空塊級元素的 margin 合併。

B:避免重疊的方法:
1.設置border-top或border-bottom
2.設置padding -top或padding -bottom
3.裡面添加內聯元素(直接 Space 鍵空格是沒用的);
4.設置 height 或者 min-height

C:重疊取值的規則:
1.正正取大值。
2.正負值相加。
3.負負取小值。


上一篇
【day4】關於CSS padding屬性
下一篇
【day6】關於CSS border
系列文
CSS、JS-30天研究筆記31
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言