Re[2]: [css-d] Table Styling

2005-09-26 Thread Steve Clay
Sunday, September 25, 2005, 10:16:28 PM, Jeff Chastain wrote: > So, only using CSS, is there a possible cross-browser solution to style the > first table cell differently from the others without have a unique ID or > class on it? CSS2, yes. IE, no. td {/* first col style */} td + td {/* fol

Re: [css-d] Table Styling

2005-09-25 Thread Christian Heilmann
> > What are you referring to here? I have looked through this page > > and I must > > be missing what you are seeing. > > Christian pointed you to a list of table stylings, none of which > really apply to your situation as I understand it. The way I > understand your problem is that the class nam

Re: [css-d] Table Styling

2005-09-25 Thread Arlen Walker
On Sep 25, 2005, at 7:53 PM, Jeff Chastain wrote: What are you referring to here? I have looked through this page and I must be missing what you are seeing. Christian pointed you to a list of table stylings, none of which really apply to your situation as I understand it. The way I und

Re: [css-d] Table Styling

2005-09-25 Thread Christian Montoya
Oh my goodness, I really think there is. I have to study for an exam so I can't show you, but some of the pages do it. Every first td in a row has a td-header selector, and you can use the CSS2 pseudo :first, which works for everything but IE. That should be the best you can do. The link really do

Re: [css-d] Table Styling

2005-09-25 Thread Thierry Koblentz
Jeff Chastain wrote: > So, only using CSS, is there a possible cross-browser solution to > style the first table cell differently from the others without have a > unique ID or class on it? No Thierry | www.TJKDesign.com __ css-di

RE: [css-d] Table Styling

2005-09-25 Thread Jeff Chastain
Montoya Sent: Sunday, September 25, 2005 8:23 PM To: Jeff Chastain Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] Table Styling There are a lot of tables there that do the styling you want... first TD is aligned one way and the rest of the TD's are styled another. It's a gallery o

Re: [css-d] Table Styling

2005-09-25 Thread Christian Montoya
gt; Sent: Sunday, September 25, 2005 5:16 PM > To: Jeff Chastain > Cc: css-d@lists.css-discuss.org > Subject: Re: [css-d] Table Styling > > There is a way to do that. Look here: > > http://icant.co.uk/csstablegallery/ > ___

RE: [css-d] Table Styling

2005-09-25 Thread Jeff Chastain
:16 PM To: Jeff Chastain Cc: css-d@lists.css-discuss.org Subject: Re: [css-d] Table Styling There is a way to do that. Look here: http://icant.co.uk/csstablegallery/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org

Re: [css-d] Table Styling

2005-09-25 Thread Christian Montoya
There is a way to do that. Look here: http://icant.co.uk/csstablegallery/ __ css-discuss [EMAIL PROTECTED] http://www.css-discuss.org/mailman/listinfo/css-d List wiki/FAQ -- http://css-discuss.incutio.com/ Supported by evolt.org -

Re: [css-d] Table Styling

2005-09-25 Thread Arlen Walker
On Sep 25, 2005, at 2:26 PM, Jeff Chastain wrote: What I would like to do is simply set the text alignment where the first cell is left justified and the last three cells are right justified. Is there a way to reference these table cells differently without a specific id tag on them? Y

Re: [css-d] Table Styling

2005-09-25 Thread Craig Cook
On 9/25/05, Jeff Chastain <[EMAIL PROTECTED]> wrote: > > . > > totals >   > 24,655 > 16,503 > 226,232 [snip] > > What I would like to do is simply set the text alignment where the first > cell is left justified and the last three cells are righ

[css-d] Table Styling

2005-09-25 Thread Jeff Chastain
I have a table that is being provided to me - i.e. I cannot modify the table structure, classes, or id names (or lack thereof). The table looks something like this ... . totals   24,655 16,503 226,232 averages  

Re: [css-d] table styling and gecko based browsers problem

2005-05-23 Thread Luc
Good evening Philippe, It was foretold that on 23-5-2005 @ 08:54:54 GMT+0900 (which was 1:54:54 where I live) Philippe Wittenbergh would write: PW> I does work, you know. But you have to use the separate border model [1] PW> table setting border to 0 on the tag did the trick :-) --

Re: [css-d] table styling and gecko based browsers problem

2005-05-22 Thread Philippe Wittenbergh
On 23 May 2005, at 1:32 am, Luc wrote: PW> Remove the border="1" form the tag Or th, td PW> {border:hidden} Philippe, unfortunately it doesn't work. Maybe i wasn't clear in my previous post: i need a border around the table but not around the th, td. I does work, you know. But

Re: [css-d] table styling and gecko based browsers problem

2005-05-22 Thread Christian Heilmann
> #downloadtable { > border: 1px solid #DD; > border-collapse: collapse; > margin: .8em 0; > padding: 0; > width: 400px; > font-size: .9em; > } #downloadtable td, #downloadtable th{ border:none; } should do the trick. After removing the border="1

Re: [css-d] table styling and gecko based browsers problem

2005-05-22 Thread Luc
Good evening Philippe, It was foretold that on 22-5-2005 @ 23:34:04 GMT+0900 (which was 16:34:04 where I live) Philippe Wittenbergh would write: PW> Remove the border="1" form the tag Or th, td PW> {border:hidden} Philippe, unfortunately it doesn't work. Maybe i wasn't clea

Re: [css-d] table styling and gecko based browsers problem

2005-05-22 Thread Kaspars Dambis
Luc wrote: Good afternoon list, http://www.dzinelabs.com/Pages/Copyoftemplates.php In Opera 8 the table borders is the way i entended it. In Moz, FF borders show up on cells also. What's the trick to remove them in Moz,FF ? relevant css in the sheet: /* downloader */ #downloadtab

Re: [css-d] table styling and gecko based browsers problem

2005-05-22 Thread Philippe Wittenbergh
On 22 May 2005, at 10:59 pm, Luc wrote: http://www.dzinelabs.com/Pages/Copyoftemplates.php In Opera 8 the table borders is the way i entended it. In Moz, FF borders show up on cells also. What's the trick to remove them in Moz,FF ? Remove the border="1" form the tag Or th, td {bor

[css-d] table styling and gecko based browsers problem

2005-05-22 Thread Luc
Good afternoon list, http://www.dzinelabs.com/Pages/Copyoftemplates.php In Opera 8 the table borders is the way i entended it. In Moz, FF borders show up on cells also. What's the trick to remove them in Moz,FF ? relevant css in the sheet: /* downloader */ #downloadtable {