html - how do i change the css property for only one row with a custom class with out removing the styles from the other rows? -


http://codepen.io/louisverdiguel/pen/vcjfh

this first time here hope doing right.

html

i have created string of rows , columns html client "resemble" spreadsheet.

css

i have created css class class="sale td" within class .

.sale td {border: 1px solid grey; } 

to have border show each row

issue: remove border <tr> contains <h2> tag

how go creating such specific class or action css , method called?

you can try this: link

css:

.sale tr.no_border td {     border: 0px !important; } 

html:

<tr class="no_border">   <td colspan="3" align="left" valign="top"><h2>bottles</h2></td> </tr> 

Comments

Popular posts from this blog

javascript - RequestAnimationFrame not working when exiting fullscreen switching space on Safari -

Python ctypes access violation with const pointer arguments -