What I want is this

What I am getting is this

My code is
<table border="2" cellpadding="10" bordercolor="blue">
I do not want to edit each td tag individually.
What's more no stylesheets are to be used in my project.
|
There are two possible solutions here (from what I can see):
I think the first option is much better. |
|||||||||||
|
|
There are two ways of defining style rules for a page. One is to do it in a separate file and to include that in via
or something to that effect, should do what you want. Mind, I said that it is better to place the style in |
|||
|
|
|
you can give border color in table for outer table border requirement and give the border in table td for internal td border. see the fiddle for better understanding :- http://jsfiddle.net/nTFAF/4/ |
|||
|
|
This is tricky, and the result matches your verbal description but not the image. The borders are solid, but I don’t think there is a way to set border color in HTML without making the border solid. The trick is to place the real table inside a single-cell table, to remove the table around the real table ( The code is valid HTML 4.01 Transitional (whereas the Of course, things would be much easier using a stylesheet. Apart from a contest or a homework assignment with odd rules, the only situation I can imagine is an authoring environment where you cannot inject a |
|||
|
|
<style>tag – zellio Mar 26 '12 at 5:28