I'm not sure I understand what you're asking. Could you try and rephrase the question? Or better yet, provide some sort of graphic of what you mean.
If you're trying to color different sides of a table with different colors, you can use some simple CSS:
Code:
table {
border:1px solid gray;
border-top-color:gray;
border-bottom-color:black;
border-right-color:red;
border-left-color:yellow;
}
If you're trying to add a gradient border, that's not currently possible given the level of support for CSS3. CSS3 does allow for image borders created via CSS, but that's not supported by most browsers.
Your option here would be to create an image and add that to the background of your table:
Code:
table {
background-image:url(path/to/image);
}
Bookmarks