我有这个css:
.chosen-container {
position: relative;
display: inline-block;
vertical-align: middle;
font-size: 13px;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
width: 100% !important;
}
.extendedForm .chosen-container{
}
如何在没有宽度的情况下进行第二次选择,覆盖顶部的通用选择器。 谢谢
答案 0 :(得分:-1)
只使用!重要的是:)
.extendedForm .chosen-container{
width:auto!imporant;
}