今天在做H5的水平滑動卡片時用到了display:inline-block;
卻發(fā)現(xiàn)處在同一水平線上的元素之間居然產(chǎn)生了縫隙,這很顯然不是我想要的效果,所以我就換成了左浮動,這樣縫隙的問題是解決了,但是需要設置父元素的寬度才能實現(xiàn)水平左右滾動,這樣又增加了代碼量,因為卡片的個數(shù)不固定,需要實時設置其父元素的寬度,就要用到js,所以代碼量增加了,也不是最好的選擇??磥碜詈玫慕鉀Q辦法就是用到display:inline-block;
了,于是縫隙的問題就出現(xiàn)了。代碼如下:
<!DOCTYPE html><html><head><meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"><title>document</title><style>*{margin:0;padding:0;}.box{overflow-x:auto;background:#fff;white-space:nowrap;}.box span{display:inline-block;width:100px;height:30px;line-height:30px;text-align:center;background:#f00;color:#fff;}</style></head><body><div class="box"> <span>111</span> <span>111</span> <span>111</span> <span>111</span></div></body></html>
效果如下: