..oO(imneedy)
Quote:
I need help in making some cell/table borders invisible.
Okay so there are four lines that define the border of a cell and I am trying
to make the left and right border invisible so that only the bottom and top
border will be visible. Is that possible? Thanks in advance. |
Sure. Define your table borders with CSS. Assuming you've applied some
class 'foo' to your table, you can define the cell borders as follows:
..foo td {border: 1px #RGB; border-style: solid none}
Replace #RGB with a color value of your choice. The first declaration
defines the width and color of all four borders around each cell in that
table, but no style yet. This is done by the second declaration, which
sets top and bottom borders to 'solid', but left and right to 'none'.
Dependent on the intended result you also might have to add this:
..foo {border-collapse: collapse}
HTH
Micha