How to set css style to outline - (generated table) (html version)

I use embedded outline on a form. I want to set specific css style to the table which is generated by domino server. However, I do not know how.The best is if there is way how to set css style to a table cell.

I want to change background color of cell whose item is selected… (something like the menu on this webpage)

thank you, j

Subject: how to set css style to outline - (generated table) (html version)

Embedd outline into div id=“something” and use CSS ability to inherit and cascade.

div#something table {color: red;}

div#something table td {background-color: yellow;}