I have a jquery datepicker and trying to customize.
I want to change the border of the elements, and I have problems with td
.ui-datepicker-calendar td{
border-left: 1px solid #FFFFFF;
border-bottom: 1px solid #FFFFFF;
}
.ui-datepicker-today {
border: 1px solid #C90212 !important;
}
The internal code for datepicker:
/*not today*/
<td class=" " data-handler="selectDay" data-event="click" data-month="2" data-year="2016"><a class="ui-state-default" href="#">8</a></td>
/*Today */
<td class=" ui-datepicker-days-cell-over ui-datepicker-today" data-handler="selectDay" data-event="click" data-month="2" data-year="2016"><a class="ui-state-default ui-state-highlight" href="#">9</a></td>
The problem is the border top for today is not setting.
I tried with border-spacing but it doesnt work with internet explorer.