美文网首页
element-UI description描述列表固定宽度

element-UI description描述列表固定宽度

作者: Jycoding | 来源:发表于2022-07-25 23:03 被阅读0次

    <el-descriptions class="margin-top" :column="3" border :contentStyle="CS" :label-style="LS ">

      <el-descriptions-item> <template slot="label"> 姓名 </template> 小米 </el-descriptions-item>

      <el-descriptions-item> <template slot="label"> 性别 </template> 女 </el-descriptions-item>

      <el-descriptions-item> <template slot="label"> 身高 </template> 1.8m </el-descriptions-item>

      <el-descriptions-item> <template slot="label"> 体重 </template> 60kg </el-descriptions-item>

    </el-descriptions>

    data(){

      return{

        CS: {

          'text-align': 'center',  //文本居中

          'min-width': '250px',  //最小宽度

          'word-break': 'break-all'  //过长时自动换行

        },

        LS: {

          'color': '#000',

          'text-align': 'center',

          'font-weight': '600',

          'height': '40px',

          'background-color': 'rgba(255, 97, 2, 0.1)',

          'min-width': '110px',

          'word-break': 'keep-all'

        }

      }

    }

    相关文章

      网友评论

          本文标题:element-UI description描述列表固定宽度

          本文链接:https://www.haomeiwen.com/subject/tnggirtx.html