el-popover弹窗修改三角样式

el-popover弹窗修改三角样式_第1张图片

Vue
<el-popover
    placement="bottom"
    title="标题"
    width="200"
    trigger="manual"
    content="这是一段内容,这是一段内容,这是一段内容,这是一段内容。"
    v-model="visible">
    <el-button slot="reference" @click="visible = !visible">手动激活</el-button>
  </el-popover>
CSS
.el-popover[x-placement^=bottom] .popper__arrow{
     
        /*el-popover上边三角下层的颜色---也就是视觉上的边框*/
        border-bottom-color: rgba(54,229,255,1);
    }
    .el-popover[x-placement^=bottom] .popper__arrow::after{
     
        /*el-popover上边三角表层的颜色---也就是视觉上的角*/
        border-bottom-color: rgba(8,40,100,1);
    }

你可能感兴趣的:(css,vue.js,前端)