CSS四个DIV自适应屏幕宽度,间距相同怎么写?

2024-11-02 13:24:01
推荐回答(2个)
回答1:


回答2:

/*css */
* {margin: 0;padding: 0}
  #box {width:100%;text-align: center;margin: 20px auto}
  #box>div {height: 200px;width:-webkit-calc(25% - 15px);background: #ddd;display: inline-block;}
  #box>div:not(:first-child){margin-left:15px;}