Forum Moderators: not2easy
I'm new to css and trying to create my first web site.
In my shop i have products displayed using a table. In the individual row I'm displaying a blue 1px solid line on the top border.
tr {
border-top: solid 1px #0000ff;
}
This works in Firefox but not IE.
Any help will be appreciated.
Kind regards
Teresa
table {
border-collapse: collapse;
}
table {
margin: 1em;
}
td {
border-top: 1px solid #00f; font-size: 1.1em; padding: .4em;
}