How Do I Change The Border Style of My Table In HTML?

Tyler

New member
I'm trying to create a HTML web page and I am trying to change the style of a border of a table on the page. My line table tag reads:

<table style="border-style:outset;" width="640" border="3" bordercolor="#FF0000" align="center" bgcolor="#000000">

I'm not quite sure what I'm doing wrong and I've tried multiple other things, such as:

<head>
<title>example</title>
<style type="text/css">td{border-style:outset;} </style>
</head>

and a few other things that also didn't work. Could someone please help me. I would ask for a link but I need someone to explain it in (somewhat) of an informal manner and I don't want to search through a bunch of categories on a website hoping to find what I'm looking for.

Thanks guys, any help is really appreciated
 
here is all values you can change in border-style:none;
hidden;
dotted;
dashed;
solid;
double;
groove;
ridge;
inset;
outset;
inherit;
try on your site....
 
Back
Top