标签:css样式 put ack 除了 border idt input scss 查询
方法有很多种
<el-button class="search_button" @click="search">查询</el-button> .search_button { color: #ffffff; background: #15ac86; border: none; border-radius: 3px; &:hover, &:active, &:focus { color: #ffffff; background: #15ac86; border: none; border-radius: 3px; } }
因为前面有.text-box .table_detail诸如自定义类名的限制,只会在当前vue文件下含有.text-box .table_detail下使用。很好啊
<el-input v-model="text" class="text-box"></el-input> <style lang="less" scoped> .text-box { /deep/ input { width: 166px; text-align: center; } }
</style>
除了样式穿透还可以新建一个没有 scoped 的 style(一个.vue文件允许多个style。缺点,其他vue文件也会更着改动。
标签:css样式 put ack 除了 border idt input scss 查询
原文地址:https://www.cnblogs.com/xiaoliziaaa/p/13202644.html