![]() |
|
|
|
#1 |
|
Curiosity mainly. Consider doing a massive table layout like doing a color chart
where you have 16 columns and 2 rows per table. Laid out horizontally. A new table under the previous one. In row one you have the color # then row 2 shows the actual color. How would you do this in say css without having to copy and paste table after table coding? time waster |
|
|
|
|
#2 |
|
Posts: n/a
|
"time waster" <> wrote in message news:... > Curiosity mainly. Consider doing a massive table layout like doing a color chart > where you have 16 columns and 2 rows per table. Laid out horizontally. > A new table under the previous one. In row one you have the color # then row 2 > shows the actual color. How would you do this in say css without having to copy > and paste table after table coding? Is there some reason you refuse to post a link to your work-in-progress, Mr. Waste? Path: sn-us!sn-xit-04!sn-xit-06!sn-xit-08!supernews.com!newsfeed.news2me.com!cyclo ne1.gnilink.net!peer01.cox.net!cox.net!pln-w!spln!dex!extra.newsguy.com!news p.newsguy.com!drn From: time waster <> Newsgroups: alt.html Subject: multiple table layout Date: 20 Nov 2003 10:04:14 -0800 Organization: Newsguy News Service [http://newsguy.com] Lines: 6 Message-ID: <> NNTP-Posting-Host: p-576.newsdawg.com X-Newsreader: Direct Read News 4.20 Xref: sn-us alt.html:438700 informant |
|
|
|
#3 |
|
Posts: n/a
|
Gazing into my crystal ball I observed time waster
<> writing in news:: > Curiosity mainly. Consider doing a massive table layout like doing a > color chart where you have 16 columns and 2 rows per table. Laid out > horizontally. A new table under the previous one. In row one you have > the color # then row 2 shows the actual color. How would you do this in > say css without having to copy and paste table after table coding? > > If I were doing it, I would use one table, and I would do it server side, looping through the values. <table> <thead> <tr> <th>Hex</th><th>Color</th> </tr> <thead> <tbody> ------- server side code here -------- for each hex in array color = hex -------------------------------------- <tr> <td>color</td><td style="background-color:color"> </td> </tr> -------------------------------------- next -------------------------------------- </tbody> </table> The array for the hex colors could probably be done with a formula, but I'm not going that far. -- Adrienne Boswell Please respond to the group so others can share http://www.arbpen.com Adrienne |
|
|
|
#4 |
|
Posts: n/a
|
"Richard" <anonymous@127.000> wrote in message news:... > informant! wrote: > > > > "time waster" <> wrote in message > > news:... > >> Curiosity mainly. Consider doing a massive table layout like doing a > >> color > > chart > >> where you have 16 columns and 2 rows per table. Laid out horizontally. > >> A new table under the previous one. In row one you have the color # then > > row 2 > >> shows the actual color. How would you do this in say css without having > >> to > > copy > >> and paste table after table coding? > > > Is there some reason you refuse to post a link to your work-in-progress, > > Mr. Waste? > > Now you're really becoming an asshole. A bigger asshole than you have been. > Anybody who uses the newsguy web site is automatically going to be attacked > by you because you think it's me. > Which goes to prove you have no proof. Just a guessing game. Why don't you let your sock do the talking, Bullis? > Do you realize how many accounts any news server has? More than one huh? > Do you have any clues as to what the population is in the world today and > that any one of those persons with access to the internet can therefor have > an account and post to usenet? Heard it all before, St00pid, *every* time I out one of your socks. > Is it not possible, assuming you are highly educated as claimed, that a > person other than me could be wanting to know some information in the > alt.html group? > You are guessing because you failed to come right out and say, "This is > BULLIS!". No need, St00pid, you did it for me. > And why does one need to post a link to a website to show what is being > asked about? > Do you not think, which is something you can't do anyway, that persons who > have working knowledge of html can't possibly determine anything without a > visual presentation to work with? Strike a nerve, Mr. Bullis? You sure are upset that "time waster" can't put up a site. Why is that? > For a person who claims to have a college degree, a home and two sports > cars, you sure are an ignorant asshole. That seems to be eating at you, St00pid. Heater not working too well in the old Dodge van? Trailer a little drafty this time of year? Got a job yet, laws00t boi? Path: sn-us!sn-xit-04!sn-xit-01!sn-xit-08!supernews.com!small1.nntp.aus1.giganews. com!border3.nntp.aus1.giganews.com!nntp.giganews.c om!pln-w!spln!dex!extra.ne wsguy.com!newsp.newsguy.com!enews1 From: "Richard" <anonymous@127.000> Newsgroups: alt.usenet.kooks Subject: Re: multiple table layout Date: Thu, 20 Nov 2003 13:32:56 -0600 Organization: http://extra.newsguy.com Lines: 44 Message-ID: <> References: <> <> NNTP-Posting-Host: p-486.newsdawg.com X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2800.1106 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1106 X-No-Archive: yes FL-Build: Fidolook 2002 (SL) 6.0.2600.78 - 24/10/2002 21:18:29 Xref: sn-us alt.usenet.kooks:569476 informant |
|
|
|
#5 |
|
Posts: n/a
|
Adrienne! wrote:
> Gazing into my crystal ball I observed time waster > <> writing in news:: >> Curiosity mainly. Consider doing a massive table layout like doing a >> color chart where you have 16 columns and 2 rows per table. Laid out >> horizontally. A new table under the previous one. In row one you have >> the color # then row 2 shows the actual color. How would you do this in >> say css without having to copy and paste table after table coding? >> >> > If I were doing it, I would use one table, and I would do it server side, > looping through the values. > <table> > <thead> > <tr> > <th>Hex</th><th>Color</th> > </tr> > <thead> > <tbody> > ------- server side code here -------- > for each hex in array > color = hex > -------------------------------------- > <tr> > <td>color</td><td style="background-color:color"> </td> > </tr> > -------------------------------------- > next > -------------------------------------- > </tbody> > </table> > The array for the hex colors could probably be done with a formula, but > I'm not going that far. Interesting. I wasn't aware that you could pass variables through a css attribute like that. Richard |
|
|
|
#6 |
|
Posts: n/a
|
"Richard" <anonymous@127.000> wrote in message news:... > Adrienne! wrote: > > > Gazing into my crystal ball I observed time waster > > <> writing in news:: > > >> Curiosity mainly. Consider doing a massive table layout like doing a > >> color chart where you have 16 columns and 2 rows per table. Laid out > >> horizontally. A new table under the previous one. In row one you have > >> the color # then row 2 shows the actual color. How would you do this in > >> say css without having to copy and paste table after table coding? > >> > >> > > > If I were doing it, I would use one table, and I would do it server side, > > looping through the values. > > The array for the hex colors could probably be done with a formula, but > > I'm not going that far. > > Interesting. I wasn't aware that you could pass variables through a css > attribute like that. I can't. You missed the bit where Adrienne said "server side". The code she posted looks like pseudo-code for a server side script. It's up to you to flesh it out into something like PHP. Cheers Richard. rf |
|
|
|
#7 |
|
Posts: n/a
|
Richard wrote:
> Interesting. I wasn't aware that you could pass variables through a css > attribute like that. Why *wouldn't* you be able to use a server-side script to generate CSS? Leif K-Brooks |
|
|
|
#8 |
|
Posts: n/a
|
rf! wrote:
> "Richard" <anonymous@127.000> wrote in message > news:... >> Adrienne! wrote: >> > >> Gazing into my crystal ball I observed time waster > >> <> writing in > >> news:: >> > >>> Curiosity mainly. Consider doing a massive table layout like doing a > >>> color chart where you have 16 columns and 2 rows per table. Laid out > >>> horizontally. A new table under the previous one. In row one you > >>> have the color # then row 2 shows the actual color. How would you do > >>>this > in > >>> say css without having to copy and paste table after table coding? > >>> > >>> >> > >> If I were doing it, I would use one table, and I would do it server > side, > >> looping through the values. > >> The array for the hex colors could probably be done with a formula, > >> but I'm not going that far. >> >> Interesting. I wasn't aware that you could pass variables through a css >> attribute like that. > I can't. You missed the bit where Adrienne said "server side". The code > she posted looks like pseudo-code for a server side script. It's up to > you to flesh it out into something like PHP. > Cheers > Richard. That's what I was wondering about. I didn't see how it was possible to do it locally. Most of the color chart sites I've seen all just seem to use tables. Richard |
|
|
|
#9 |
|
Posts: n/a
|
"Richard" <anonymous@127.000> wrote in message news:... > rf! wrote: > > > > "Richard" <anonymous@127.000> wrote in message > > news:... > >> Adrienne! wrote: >> > >> Interesting. I wasn't aware that you could pass variables through a css > >> attribute like that. > > > I can't. You missed the bit where Adrienne said "server side". The code > > she posted looks like pseudo-code for a server side script. It's up to > > you to flesh it out into something like PHP. > > > That's what I was wondering about. I didn't see how it was possible to do it > locally. > Most of the color chart sites I've seen all just seem to use tables. <sigh/> And that is just what Adriennes server side process would produce. An HTML table. rf |
|
|
|
#10 |
|
Posts: n/a
|
"Richard" <anonymous@127.000> wrote in message news:... > informant! wrote: > > > > "time waster" <> wrote in message > > news:... > >> Curiosity mainly. Consider doing a massive table layout like doing a > >> color > > chart > >> where you have 16 columns and 2 rows per table. Laid out horizontally. > >> A new table under the previous one. In row one you have the color # then > > row 2 > >> shows the actual color. How would you do this in say css without having > >> to > > copy > >> and paste table after table coding? > > > Is there some reason you refuse to post a link to your work-in-progress, > > Mr. Waste? > > Now you're really becoming an asshole. A bigger asshole than you have been. > Anybody who uses the newsguy web site is automatically going to be attacked > by you because you think it's me. Bullis, it's ALWAYS obvious when it's you. It's been explained to you HOW it's obvious MANY times before, and yet TO THIS VERY DAY you have no clue. That speaks volumes. > Which goes to prove you have no proof. Just a guessing game. > Do you realize how many accounts any news server has? More than one huh? > Do you have any clues as to what the population is in the world today and > that any one of those persons with access to the internet can therefor have > an account and post to usenet? > > Is it not possible, assuming you are highly educated as claimed, that a > person other than me could be wanting to know some information in the > alt.html group? > You are guessing because you failed to come right out and say, "This is > BULLIS!". > > And why does one need to post a link to a website to show what is being > asked about? > Do you not think, which is something you can't do anyway, that persons who > have working knowledge of html can't possibly determine anything without a > visual presentation to work with? > > For a person who claims to have a college degree, a home and two sports > cars, you sure are an ignorant asshole. And yet, he's more successful than you will ever, ever be. Alex Cain |
|
![]() |
| Thread Tools | Search this Thread |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| changing Crystal report table at run time | rakesh201180 | Software | 1 | 10-22-2008 10:58 AM |
| MCITP and stored procedure permissions | Darrilgibson@gmail.com | MCITP | 5 | 06-07-2008 12:37 PM |
| High-Def Playback: The Firmware Gotcha | Ablang | DVD Video | 46 | 07-28-2007 07:25 AM |
| How to store dataset to a table in the database. Please be specific. Urgent | fullblown | General Help Related Topics | 0 | 09-20-2006 03:55 PM |
| Multiple DVD editions | Bernie Woodham | DVD Video | 13 | 04-04-2006 08:21 PM |