我有一个附加到我的页面的日期选择器的问题,日期选择器的样式被另一种样式覆盖,它使日期选择器坏影响日期选择器样式的文件是
css 表
但是当我把这个 .css 放到网上时,我得到 了当前视图的结果
任何帮助!
问题是smoothness.css 文件中的宽度
.ui-datepicker {
display: none;
padding: 0.2em 0.2em 0;
width: 17em;//remove this line then it will work or change into auto
}
LESS 可能是一个完美的解决方案。通过添加这样的范围将 CSS 转换为 LESS
#myId{
.ui-datepicker {
... /* width:auto; (in example) */
}
}
现在通过 LESS2CSS 将其转换回
#myId .ui-datepicker{
...
}
问候。
添加!important;
到任何与其他样式表冲突但您希望它们生效的 CSS 样式的末尾