I was wondering if there was a way using css to change the layout of a list in a table. This is what I'm looking for:
Current:
date1 event1 hour1
date2 event2 hour2
date2 event3 hour1
date2 event4 hour2
date3 event5 hour3
date3 event6 hour1
What i need:
date1 event1 hour1
date2 event2 hour2
_____ event3 hour1
_____ event4 hour2
date3 event5 hour3
_____ event6 hour1
(NOTE: the underscore it to signify empty space)
Basically I want the data not to repeat the same date and list it only under one. Is it possible using css?
Current:
date1 event1 hour1
date2 event2 hour2
date2 event3 hour1
date2 event4 hour2
date3 event5 hour3
date3 event6 hour1
What i need:
date1 event1 hour1
date2 event2 hour2
_____ event3 hour1
_____ event4 hour2
date3 event5 hour3
_____ event6 hour1
(NOTE: the underscore it to signify empty space)
Basically I want the data not to repeat the same date and list it only under one. Is it possible using css?
Comment