separator in table
hi,
anyone know how to realize a horizontal line in a <h:dataTable>?
i would like to have after each row a separator:
A1.1 A2.1 A3.1
--
A2.1 A2.2 A2.3
--
A3.1 A3.2 A3.3
and so on...........
i included in every row a style:border-bottom, but i have some spaces between each elements:
A1.1 A2.1 A3.1
- --
A2.1 A2.2 A2.3
A3.1 A3.2 A3.3
any other suggestions?
[450 byte] By [
naekoa] at [2007-11-27 10:13:37]

# 2
are you sure that rules attibute solves it?
i made it as you say, but nothing happened.
datatable has still no lines
naekoa at 2007-7-28 15:27:58 >

# 3
>
> i included in every row a style:border-bottom, but i
> have some spaces between each elements:
> A1.1 A2.1 A3.1
> - --
> A2.1 A2.2 A2.3
>
> A3.1 A3.2 A3.3
Try the above with cellspacing and cellpadding set to zero.
# 4
JSF<h:dataTable styleClass="myTable" />
CSS.myTable {
border-collapse: collapse;
}
.myTable td {
border-bottom: 1px #000 solid;
}