HighDots Forums  

styel as rules="all"

alt.html alt.html


Discuss styel as rules="all" in the alt.html forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
tshad
 
Posts: n/a

Default styel as rules="all" - 02-03-2005 , 12:49 PM






Is there a style that equates to rules="all"?

Tom



Reply With Quote
  #2  
Old   
rf
 
Posts: n/a

Default Re: styel as rules="all" - 02-03-2005 , 05:30 PM






"tshad" <tscheiderich (AT) ftsolutions (DOT) com> wrote

Quote:
Is there a style that equates to rules="all"?
* ?




Reply With Quote
  #3  
Old   
rf
 
Posts: n/a

Default Re: styel as rules="all" - 02-03-2005 , 05:43 PM




"rf" <rf@.invalid> wrote

Quote:
"tshad" <tscheiderich (AT) ftsolutions (DOT) com> wrote

Is there a style that equates to rules="all"?

* ?
Hmmm. Having read your *other* posts on this matter I now understand what
you are talking about.

If you had said "Is there a CSS proterty that equates to the rules=all
attribute/value of the <td> element" it may have been clearer.

No not really. Have a look at
http://www.w3.org/TR/REC-CSS2/tables.html#borders

This is the bit that talks about borders in CSS "tables". In any case there
is a good chance that IE will not suport what you want.

What is wrong with using the rules attribute anyway. Doesn't it do what you
want?




Reply With Quote
  #4  
Old   
Jukka K. Korpela
 
Posts: n/a

Default Re: styel as rules="all" - 02-03-2005 , 06:33 PM



"rf" <rf@.invalid> wrote:

Quote:
Hmmm. Having read your *other* posts on this matter I now understand
what you are talking about.
What other posts on this matter?

Quote:
If you had said "Is there a CSS proterty that equates to the rules=all
attribute/value of the <td> element" it may have been clearer.
Well, it would have been odd, since there is no such attribute for <td>.
For <table>, and only for <table>, there is.

Quote:
This is the bit that talks about borders in CSS "tables".
What rules="all" really means is that it specifies that all _cells_ have
borders. In that sense, it is sufficient to set a border for all th and td
elements. The details depend on what you really want. There is no way in
general to simulate the effect of rules="all" as such, since the borders
you get by using HTML alone are of some unspecified default kind. In CSS,
you can and must be more specific, such as
th, td { border: solid 1px #555; }

Quote:
In any case
there is a good chance that IE will not suport what you want.
In this case, things might work even on IE.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html




Reply With Quote
  #5  
Old   
Richard
 
Posts: n/a

Default Re: styel as rules="all" - 02-03-2005 , 08:10 PM



On Thu, 03 Feb 2005 17:49:04 GMT tshad wrote:

Quote:
Is there a style that equates to rules="all"?

Tom

No.




Reply With Quote
  #6  
Old   
tshad
 
Posts: n/a

Default Re: styel as rules="all" - 02-04-2005 , 06:20 PM



"rf" <rf@.invalid> wrote

Quote:
"rf" <rf@.invalid> wrote in message
news:uCxMd.146702$K7.99911 (AT) news-server (DOT) bigpond.net.au...
"tshad" <tscheiderich (AT) ftsolutions (DOT) com> wrote

Is there a style that equates to rules="all"?

* ?

Hmmm. Having read your *other* posts on this matter I now understand what
you are talking about.

If you had said "Is there a CSS proterty that equates to the rules=all
attribute/value of the <td> element" it may have been clearer.

No not really. Have a look at
http://www.w3.org/TR/REC-CSS2/tables.html#borders

This is the bit that talks about borders in CSS "tables". In any case
there
is a good chance that IE will not suport what you want.

What is wrong with using the rules attribute anyway. Doesn't it do what
you
want?
Nothing wrong with using it. I just have to remember to put in the proper
tables.

I was trying to use CSS as much as possible. I have been getting quite a
bit of grief from people who say I should drop the table tags and us CSS
styles. I have to find the right mix of both.

Some say I should do my pages without tables at all. Pretty interesting
statement, considering that the much of the .net objects are based on
tables.

I was just confused on why the rules attribute did what it did based on what
I read. I had read that article and was not sure what the collapse business
was all about.

Tom




Reply With Quote
  #7  
Old   
tshad
 
Posts: n/a

Default Re: styel as rules="all" - 02-04-2005 , 06:28 PM



"Jukka K. Korpela" <jkorpela (AT) cs (DOT) tut.fi> wrote

Quote:
"rf" <rf@.invalid> wrote:

Hmmm. Having read your *other* posts on this matter I now understand
what you are talking about.

What other posts on this matter?

If you had said "Is there a CSS proterty that equates to the rules=all
attribute/value of the <td> element" it may have been clearer.

Well, it would have been odd, since there is no such attribute for <td>.
For <table>, and only for <table>, there is.

This is the bit that talks about borders in CSS "tables".

What rules="all" really means is that it specifies that all _cells_ have
borders. In that sense, it is sufficient to set a border for all th and td
elements. The details depend on what you really want. There is no way in
general to simulate the effect of rules="all" as such, since the borders
you get by using HTML alone are of some unspecified default kind. In CSS,
you can and must be more specific, such as
th, td { border: solid 1px #555; }

But this is what is confusing. If I say borders=1 and no rules, I get 3D
borders. If I say borders=1 and rules=all, I get borders all around, but
they are thin lines. If I say borders=0 and rules=all, I get the same thin
lines, but not on the outside of the table. Looks like tic tac toe. If the
rules were to border the cells, why isn't there a border on the outside of
the outside cells?

Tom
Quote:
In any case
there is a good chance that IE will not suport what you want.

In this case, things might work even on IE.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html





Reply With Quote
  #8  
Old   
Jukka K. Korpela
 
Posts: n/a

Default Re: styel as rules="all" - 02-05-2005 , 10:47 AM



"tshad" <tscheiderich (AT) ftsolutions (DOT) com> wrote:

Quote:
But this is what is confusing.
The <table> attributes mostly _are_ confusing. This is one reason why it is
often best to play with CSS only when styling a table, except perhaps for
border="1", since it is generally rather important, for a data table, to
have some borders around cells in non-CSS situations.

Quote:
If I say borders=1 and no rules, I get
3D borders.
You mean border, not borders.

By HTML definition, border="1" implies a default of rules="all", i.e. there
are borders around each cell, in addition to the border around the table as
a whole. The cell borders have a browser-dependent default appearance,
which you might be able to affect in CSS, but not in (standard) HTML.
Their typical appearance might be characterized as three-dimensional,
though this is somewhat debatable since they are normally 1px thin.
The border around the entire table has the width defined by the border
attribute's value.

Quote:
If I say borders=1 and rules=all, I get borders all
around, but they are thin lines.
I'm pretty sure you have misanalyzed something. Why don't you specify a
demo URL and list the browsers you used for testing this?

Quote:
If I say borders=0 and rules=all, I
get the same thin lines, but not on the outside of the table.
On which browser(s)? IE is known to get such things wrong. There should be
no border around the table as a whole if you set border="0", but IE
misbehaves.

Quote:
If the rules were to border the cells, why isn't
there a border on the outside of the outside cells?
Pardon? Are you referring to a _different_ IE misbehavior: if you
additionally set frame="void", IE correctly leaves out the border around
the table as a whole but it also incorrectly leaves out some of the borders
of the cell?

Did I mention that this is easier in CSS? Just set border="1" in HTML, and
then start playing with CSS.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html




Reply With Quote
  #9  
Old   
tshad
 
Posts: n/a

Default Re: styel as rules="all" - 02-10-2005 , 12:21 PM



"Jukka K. Korpela" <jkorpela (AT) cs (DOT) tut.fi> wrote

Quote:
"tshad" <tscheiderich (AT) ftsolutions (DOT) com> wrote:

But this is what is confusing.

The <table> attributes mostly _are_ confusing. This is one reason why it
is
often best to play with CSS only when styling a table, except perhaps for
border="1", since it is generally rather important, for a data table, to
have some borders around cells in non-CSS situations.

Not sure what you mean here. What would be considered a non-CSS situation?

I get all kinds of grief when not using CSS, but clearly you still need to
use table attributes for some instances (right?).

Quote:
If I say borders=1 and no rules, I get
3D borders.

You mean border, not borders.

By HTML definition, border="1" implies a default of rules="all", i.e.
there
are borders around each cell, in addition to the border around the table
as
a whole. The cell borders have a browser-dependent default appearance,
which you might be able to affect in CSS, but not in (standard) HTML.
Their typical appearance might be characterized as three-dimensional,
though this is somewhat debatable since they are normally 1px thin.
The border around the entire table has the width defined by the border
attribute's value.
I did put a sample page:

http://www.payrollworkshop.com/sampl...erulestest.htm

to show the differences.

And I did figure out how to get just the outside border (border=1,
rules="none").

In IE, it actually does what you would expect (most of the time). I assume
border=1 implies rules=all (as you said) and border=0 implies rules=none.
Same with Mozilla. But in IE, you can't seem to get rules=all without the
outside border. It implies border=0 and rule=none.

In IE, all the lines (borders look the same - stylized 3D look). In
Mozilla, only borders=1 has this look. All the rest are thin lines.

Quote:
If I say borders=1 and rules=all, I get borders all
around, but they are thin lines.

I'm pretty sure you have misanalyzed something. Why don't you specify a
demo URL and list the browsers you used for testing this?

I did and it is at:

http://www.payrollworkshop.com/sampl...erulestest.htm

Quote:
If I say borders=0 and rules=all, I
get the same thin lines, but not on the outside of the table.

On which browser(s)? IE is known to get such things wrong. There should be
no border around the table as a whole if you set border="0", but IE
misbehaves.
Which is irritating.
Quote:
If the rules were to border the cells, why isn't
there a border on the outside of the outside cells?

Pardon? Are you referring to a _different_ IE misbehavior: if you
additionally set frame="void", IE correctly leaves out the border around
the table as a whole but it also incorrectly leaves out some of the
borders
of the cell?

Did I mention that this is easier in CSS? Just set border="1" in HTML, and
then start playing with CSS.

I will need to do this more to get a better idea of the behaviors in each of
the browsers.

Thanks,

Tom




Reply With Quote
  #10  
Old   
Jukka K. Korpela
 
Posts: n/a

Default Re: styel as rules="all" - 02-10-2005 , 02:29 PM



"tshad" <tscheiderich (AT) ftsolutions (DOT) com> wrote:

Quote:
Not sure what you mean here. What would be considered a non-CSS
situation?
Generally, any situation where style sheets are not applied or, what comes
close to that in practice, where a browser's or user's style sheet
overrides most of the author's style sheet. For example, if anyone still
surfs around with Netscape 4, it's probably best to switch off its
style sheet "support".

Quote:
I get all kinds of grief when not using CSS, but clearly you still need
to use table attributes for some instances (right?).
Well, "need" is a strong word, but I really meant that border="1" is quite
useful for most data tables.

--
Yucca, http://www.cs.tut.fi/~jkorpela/
Pages about Web authoring: http://www.cs.tut.fi/~jkorpela/www.html




Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.