当前位置:   article > 正文

element ui el-row标签中的gutter干嘛用的_el-row gutter

el-row gutter

Element UI 的 el-row 标签中,gutter 属性用于设置行内列之间的间距(空隙)。这个属性通常用于控制列之间的水平间距,使得布局看起来更加美观和整齐。

当你在一个 el-row 中包含多个 el-col(列)时,你可以使用 gutter 属性来设置列之间的空隙,以增加页面的可读性和美观度。例如:

<template>
  <el-row :gutter="20">
    <el-col :span="12">Column 1</el-col>
    <el-col :span="12">Column 2</el-col>
  </el-row>
</template>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在上面的示例中,我们在 el-row 中设置了 gutter 属性为 20,这意味着 Column 1Column 2 之间的水平间距为 20px

通过调整 gutter 属性的值,你可以自定义列之间的间距以满足你的布局需求。这有助于创建各种不同样式的页面布局。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/你好赵伟/article/detail/89840
推荐阅读