Java Table borders / Table Borders

Trader

New Member
Hi all

I am trying to make a pencil thin border in html. Trying to play with border styles. So far I can do

<table border="1"> Which gives your your standard thin border

then you can to <tr><td bordercolordark="#000000"> Which gives you a pencil thin black line BUT only seems to work if you have a border as well.

Can I simply get a thin black line border somehow?
 

Kiwiberry

New Member
Do you have a link to show what your trying to do? do you want a border around cell like indicated in
<tr><td bordercolordark="#000000">
or are you trying to create a horizontal line? You can also do borders on a single side of a cell like

border-top: #000000;
or
border-bottom: #4D7390;
 

StephanieCordray

New Member
I don't believe there is a way to go smaller than one using HTML... I wish there was sometimes but...

However, you might try graphics and make a pencil thin line surrounded by white (or whatever other color you are using in your background) to make your border.
 
Top