EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: aboboo on January 13, 2015, 05:44:46 AM



Title: How to add border line on calendar?
Post by: aboboo on January 13, 2015, 05:44:46 AM
each day have a border line.


Title: Re: How to add border line on calendar?
Post by: stworthy on January 13, 2015, 08:51:18 AM
Please try to override the '.calendar-day' CSS style.
Code:
<style type="text/css">
.calendar-day{
border: 1px solid #eee;
}
</style>


Title: Re: How to add border line on calendar?
Post by: aboboo on January 13, 2015, 03:26:13 PM
thank you!