CI calendar class CSS for the table


/ Published in: CSS
Save to your folder(s)

The styling information for the calendar


Copy this code and paste it in your HTML
  1. /* table for calendar customization */
  2. #cal th {
  3. text-align: center;
  4. }
  5.  
  6. #cal td {
  7.  
  8. }
  9.  
  10. #cal .cal_cell {
  11. height: 5em;
  12. width: 100px;
  13. vertical-align: top;
  14. text-align: left;
  15. border: 1px solid grey;
  16. }
  17.  
  18. #cal table tr {
  19. border: 1px solid grey;
  20. }
  21.  
  22. #cal .week_cell {
  23. border-bottom: 1px solid black;
  24. }

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.