[css]float按比例三栏布局

  • html(vue <template>)
<div class='flelf '></div>
<div class='fright '></div>
<div class='fm '></div>
  • css(vue <style>)
.flelf {
    float: left;
    width: 24.4%;
  }

  .fright {
    float: right;
    width: 24.4%;
  }

  .fm {
    margin-left: 25%;
    margin-right: 25%;
  }

明白了,要先放right的div,再放middle的,不然右边会塌陷,先渲染了中间。css

相关文章
相关标签/搜索