Quote:
Originally Posted by Charlie98902
So just remove this :
Code:
table.sample {
border-width: 3px 3px 3px 3px;
border-spacing: 2px;
border-style: dashed dashed dashed dashed;
border-color: green green green green;
border-collapse: separate;
background-color: white;
}
To not have any border there right?
|
No, you have to remove all of this:
Code:
<style type="text/css">
table.sample {
border-width: 3px 3px 3px 3px;
border-spacing: 2px;
border-style: dashed dashed dashed dashed;
border-color: green green green green;
border-collapse: separate;
background-color: white;
}
table.sample th {
border-width: 1px 1px 1px 1px;
padding: 1px 1px 1px 1px;
border-style: inset inset inset inset;
border-color: gray gray gray gray;
background-color: white;
-moz-border-radius: 0px 0px 0px 0px;
}
table.sample td {
border-width: 1px 1px 1px 1px;
padding: 1px 1px 1px 1px;
border-style: inset inset inset inset;
border-color: gray gray gray gray;
background-color: white;
-moz-border-radius: 0px 0px 0px 0px;
}
</style>