HTML_随笔

按钮的悬停禁用提示

button:hover{
cursor: not-allowed;
border:none;
background-image: none;
background-color: #fff;
border-color: #ebeef5;
}

从后台接收到text文本怎么实现自换行:

white-space: pre-line;

/deep/ 深度选择器

vue组件中,style设置为scoped的时候,里面再写样式对子组件是不生效的,如果想让某些样式对所有子组件都生效,可以使用 /deep/ 深度选择器。
<-- less语法 -->
/deep/ .class{
background:red; //对所有子组件生效.
/deep/ .class3{ } //没有必要写多层deep 父类有deep后子类自动也会深度选择 并且这么写在firfox里会失效
}
}

发布了25 篇原创文章 · 获赞 0 · 访问量 1421

猜你喜欢

转载自blog.csdn.net/SuperxApple/article/details/102931805