2016-03-20 48 views
1

我試圖做一個自定義的CSS格:1px的差距排在使用CSS電網

.row 
    box-sizing: border-box 
    background-color: tomato 
    font-size: 0 
.row:after 
    content: "" 
    display: table 
    clear: both 
[class*="col-"] 
    float: left 
    min-height: 1px 
    box-sizing: border-box 
.col-1-4 
    width: 25% 
.col-3-4 
    width: 75% 
.col-2-3 
    width: 66.66667% 
.col-1-3 
    width: 33.33333% 

但是當我縮放頁面1px的差距出現在一行的末尾: Image

那麼如何避免呢?

回答