我使用以下样式来更改jquery.how中的datepicker颜色以更改Date背景颜色。这里它将显示1,2,3后面的蓝色,最多30.我需要更改蓝色吗?怎么做?
<style type="text/css">
.ui-datepicker {
background: #333;
border: 1px solid #555;
color: #EEE;
}
</style>
答案 0 :(得分:0)
在“.ui-datepicker td”类
中添加颜色例如
.ui-datepicker td {
border: 0;
padding: 1px;
background: #f00;
}
答案 1 :(得分:0)
试试这个,
.ui-state-default {
background-color: #ccc !important;
background-image: none !important;
}
答案 2 :(得分:0)
<style type="text/css">
.ui-datepicker {
background: #999;
border: 1px solid #555;
color: #EEE;
}
</style>