Hello
I have a poll.asp site here:
If you visit the page and vote, you will be taken to a page which displays the voting results. These results are displayed in table form, but each cell has a border which I would like to remove.
I thought that could be done using the following CSS:
<style type="text/css">
TD { border: 1px solid black; }
</style>
but I can't seem to get it to work.
On the other hand, it may be that I have the code positioned wrongly.
Basically, I have an .asp file and have simply pasted the style statement (above) into the top of the .asp file like this:
<html>
<head>
<style type="text/css">
TD { border: 1px solid black; }
</style>
</head>
Then, at the end, I have the closing html tag. In between, I have html code (tables, borders, etc) and VB script for the poll itself.
I would be grateful for any comments or advice.
LaPluma
I have a poll.asp site here:
If you visit the page and vote, you will be taken to a page which displays the voting results. These results are displayed in table form, but each cell has a border which I would like to remove.
I thought that could be done using the following CSS:
<style type="text/css">
TD { border: 1px solid black; }
</style>
but I can't seem to get it to work.
On the other hand, it may be that I have the code positioned wrongly.
Basically, I have an .asp file and have simply pasted the style statement (above) into the top of the .asp file like this:
<html>
<head>
<style type="text/css">
TD { border: 1px solid black; }
</style>
</head>
Then, at the end, I have the closing html tag. In between, I have html code (tables, borders, etc) and VB script for the poll itself.
I would be grateful for any comments or advice.
LaPluma