Discussion Board
How to set the border for a table?
1970-01-01, 02:00
#1
Registered User
Hey
I am trying <table style="border-width=medium">, but its not showing any border. Is there any other way to show the border for the table?
Thanks
Hari
RE: How to set the border for a table?
1970-01-01, 02:00
#2
Registered User
try this
<span style="border: solid medium">bla bla bla</span>
or this
<span style="border-style: solid; border-width:medium">bla bla bla</span>
RE: How to set the border for a table?
1970-01-01, 02:00
#3
Registered User
If you are really sure about defining the border in your documents <table> tag, try for example:
<table style="border: solid medium">
Note however that it's preferred to use a stylesheet, so
<table class="solid_medium">
with a CSS including:
.solid_medium {
border-width: medium;
border-style: solid;
}
does the same job in style.
Posting Permissions
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
Forum Rules