How to apply CSS to td of one particular table; excluding all other tables in web page?
<
-
2021-01-19 01:41
This is what you want.
Check out this fiddle.
#ToBeApplied td {
padding:23px;
font-weight:bold
}
Here is the snippet.
#ToBeApplied td {
padding: 23px;
font-weight: bold
}