我不知道为什么在wxss里无法设置button宽度,在wxml里设置可以生效
wxml文件代码< view class = "container" > < button class = "but" > </ button > </ view > |
wxss文件代码
page{ height : 100% ; width : 100% ; background : #f4f4f4 ; } .but { background : #333 ; width : 100% ; } |
wxml文件代码
< view class = "container" > < button style = "background: #333;width: 100%;" > </ button > </ view > |
wxss文件代码
page{ height : 100% ; width : 100% ; background : #f4f4f4 ; } |
赞同楼上说的“层级不够”,所以可加上一个 !important 来提高优先级
eg:width:100% !important;
(在 100% 与 !important 之间加不加空格均可。)
层级不够,button里面有很多自带样式,可以审查一下元素,将原来的样式覆盖掉
你可以试试在wxss直接改button{},别用定义的class