0

jquery.how to change the Date background color.Here で datepicker の色を変更するために次のスタイルを使用します。これ?

 <style type="text/css">
.ui-datepicker {
   background: #333;
   border: 1px solid #555;
   color: #EEE;
 }
</style>

ここに画像の説明を入力

4

3 に答える 3

0
   <style type="text/css">
     .ui-datepicker {
      background: #999;
      border: 1px solid #555;
       color: #EEE;
       }
     </style>
于 2012-06-13T11:42:24.990 に答える
0

これを試して、

.ui-state-default {
    background-color: #ccc !important;
    background-image: none !important;
}

デモ

于 2012-06-13T11:39:43.683 に答える
0

「.ui-datepicker td」クラスに色を追加

例えば

.ui-datepicker td {
border: 0;
padding: 1px;
background: #f00;
}
于 2012-06-13T11:34:20.767 に答える