I have two type of cells in my table.
1st type cells have the class name ".top"
2nd type cells have the class name ".top .selected"
My problem is I have to remove the border-top in my 2nd type of cells.
here is my code:but it not apply the 2nd code.
1st Type:
html body #ROOT tr.fare .top {
border-top: 3px solid #888888 !important;
}
2nd type:
html body #ROOT tr.fare .top .selected{
border-top: none !important;
}
I can not remove !important tag from 1st type.I want to override the 1st property and apply the 2nd type css.Please advice me, How to target strongly??