Re: [css-d] Trying to make text lighter than 100

2011-03-06 Thread Philippe Wittenbergh
On Mar 6, 2011, at 1:35 AM, Felix Miata wrote: >> Your test case has bad fall back. I don't have DejaVu (*) installed > > What makes it "bad"? Did note 1 escape your understanding? Note 1 is buried several screens deep. My bad for not having the time for the need to scroll down that far to fi

Re: [css-d] Trying to make text lighter than 100

2011-03-06 Thread Felix Miata
On 2011/03/06 18:31 (GMT+0900) Philippe Wittenbergh composed: http://dev.l-c-n.com/_b/dejavu-12px.png (not that I would recommend it for body text, but it does display fine) Again I'm puzzled. How does one validate a font face? http://sourceforge.net/projects/dejavu/files/dejavu/2.33/dejavu

[css-d] Css conditional script based on browser

2011-03-06 Thread i...@ecoitsf.com
Is there a way to detect what browser is being used then set different parameters on a css class or is depending on the browser? Sincerely, Matthew __ css-discuss [css-d@lists.css-discuss.org] http://www.css-discuss.org/mailman

Re: [css-d] Css conditional script based on browser

2011-03-06 Thread Jarek Foksa
> Is there a way to detect what browser is being used then > set different parameters on a css class or is depending > on the browser? Unless you are trying to target IEs, I would strongly recommend you to do feature detection, not browser detection. Modernizr library should do the job: http://ww

Re: [css-d] Css conditional script based on browser

2011-03-06 Thread David Laakso
On 3/6/11 12:45 PM, i...@ecoitsf.com wrote: Is there a way to detect what browser is being used then set different parameters on a css class or is depending on the browser? Sincerely, Matthew Yes, sort of, but "browser sniffing" is not a particularly good way to go:

Re: [css-d] Css conditional script based on browser

2011-03-06 Thread tedd
At 9:45 AM -0800 3/6/11, =?utf-8?B?aW5mb0BlY29pdHNmLmNvbQ==?= wrote: Is there a way to detect what browser is being used then set different parameters on a css class or is depending on the browser? Sincerely, Matthew Sure. If you use PHP, then that data will be recorded in the $_SERVER['H

Re: [css-d] Css conditional script based on browser

2011-03-06 Thread Matthew P. Johnson
-Original Message- From: css-d-boun...@lists.css-discuss.org [mailto:css-d-boun...@lists.css-discuss.org] On Behalf Of Jarek Foksa Sent: Sunday, March 06, 2011 10:16 AM To: css-d@lists.css-discuss.org Subject: Re: [css-d] Css conditional script based on browser > Is there a way to detect w

[css-d] stretching content to the footer

2011-03-06 Thread BHomis
I apologize if my question has been asked before or if my question is paraphrased from someone else’s. I'm trying to create a website that has a header, a content part, and a footer – all within a container. The entire site should have a height of 100% and should be cross browser compati

Re: [css-d] stretching content to the footer

2011-03-06 Thread John D
You haven't done any research on the web have you? I suggest read this article to see if it solves your problem: Good luck. > I apologize if my question has been asked before or if my question is > paraphrased from someone el

Re: [css-d] stretching content to the footer

2011-03-06 Thread John D
You could also try this: Header here html,body {margin:0; padding:0; height:100%;} #vc-main {min-height:100%; position:relative;} #vc-header {background:#9F0;} #vc-body {padding-bottom:80px;} /* Height of the footer */ #vc-footer {position:absolute; bottom:0; width:100%; height:80px;/* Hei