本文主要是介绍el-tooltip 样式修改,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
<template><div><el-tooltip class="item" effect="dark" content="Right Bottom 提示文字" placement="right-end"><el-button>右下</el-button></el-tooltip></div>
</template><script>
export default {}
</script><style>
.el-tooltip__popper {border-radius: 4px !important;color: #9e9d24 !important;background: #f9fbe7 !important;border: 1px solid #9e9d24 !important;margin-top: 50px;left: 60px !important;
}
.popper__arrow {display: none !important;
}
</style>
这篇关于el-tooltip 样式修改的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!