How to apply style classes to td elements?

Give the table a class name and then you target the td‘s with the following:

table.classname td {
    font-size: 90%;
}

Leave a Comment