I need to style a codeigniter calendar using the template provided in the user guide but I need that from day 1 to 15 from a given month be background-color red and from day 16 to the last day of the month to be blue.
Please someone help me with this. I am very grateful for everyone's help.
答案 0 :(得分:0)
您可以使用创建日历模板 这里: http://www.codeigniter.com/userguide2/libraries/calendar.html
或者你也可以使用 CSS3:nth-child()选择器
示例:
p:nth-child(2) {
background: #ff0000;
}
在上面的示例中,为<p>
parent:
元素指定背景颜色