1

我有一个附加到我的页面的日期选择器的问题,日期选择器的样式被另一种样式覆盖,它使日期选择器坏影响日期选择器样式的文件是
css 表

但是当我把这个 .css 放到网上时,我得到 了当前视图的结果

任何帮助!

4

3 回答 3

2

问题是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
}
于 2013-11-11T10:14:25.237 回答
0

LESS 可能是一个完美的解决方案。通过添加这样的范围将 CSS 转换为 LESS

#myId{
  .ui-datepicker {
          ... /* width:auto; (in example) */
  }
}

现在通过 LESS2CSS 将其转换回

#myId .ui-datepicker{
   ...
}

问候。

于 2013-11-11T10:53:02.180 回答
-1

添加!important; 到任何与其他样式表冲突但您希望它们生效的 CSS 样式的末尾

于 2013-11-11T10:12:56.790 回答