i wanted to make a table with the boder is a dashed line with the color i specify. i dont know if this is a javascript trick or just html?
i am going to be making a side menu and i wanted to put the menu items in a table with a border that is a dashed line with the dashes is a specific color.
i want to apply the dashes to only one table in the layout. how do i make it work if i define this css in the head, but what tags do i add to the table to make only certain tabkes with dashes?
i dont know if i am saying this the right way? how do i apply a css to a specific table?
<table class="dash">
<!--rest of table code here-->
Be careful with nesting tables, since the cells in nested tables will also take on the border (unless you give them another class to override the border rules).
nice, this is great. since now i know how to add the diffrent classes for the diffrent styles i want, i am going to have a much easier time setting up new layouts.