I have code that wraps the end-to-end path to TR for deleted rows, but that means my "Actions" column (which only has) suffers. This is due to the fact that there are separate gaps between the buttons, which also end with a line.
After you peek into W3Schools, it scares me why this example does not work:
<html> <head> <style type="text/css"> tr {text-decoration:line-through} </style> </head> <body> <table> <tr> <td>this needs to be line-throughed</td> <td style="text-decoration: none !important;">This shouldn't be line-throughed.</td> </tr> </table> </body> </html>
How can I clear the end-to-end path of children?
EDIT I updated my example - the problem is that I do not want to erase the style from the parent element, just one child element.
html css
JustLoren Nov 18 '09 at 19:49 2009-11-18 19:49
source share