Re: [css-d] safari glitch

2010-12-22 Thread Chetan Crasta
http://ba-doyn.com/junk/ There was some deprecated html like the center tag and align=right etc. and some non-semantic html like br. I've made an example of how you can style the form with valid css and semantic html. http://roughtech.com/t/j.html BTW, the Yahoo tracking code is the

Re: [css-d] Vendor prefixes and validation

2010-12-22 Thread G.Sørtun
Holiday task for anyone who hasn't done so yet: _read_ the that CSS3 backgrounds and borders module: http://www.w3.org/TR/css3-background/ (or for the latest text, the editor's draft: http://dev.w3.org/csswg/css3-background/) I've put them both under the (palm)tree. Maybe I'll get through

Re: [css-d] Vendor prefixes and validation

2010-12-22 Thread Philippe Wittenbergh
On Dec 22, 2010, at 4:42 PM, Alan Gresley wrote: As far as the CSS 3 backgrounds and borders module is concerned, Gecko 2.0 (Fx 4b), Presto (Opera 11), Trident (IE 9) and WebKit (Chrome 8, Safari 5) have implemented support for all listed properties note: except WebKit still needs the

Re: [css-d] Footer on odd pages only

2010-12-22 Thread Mark Richards
On Mon, Dec 20, 2010 at 18:40, Evan Panagiotopoulos epana...@gmail.comwrote: I create a string of html documents using php. Each document prints one sheet of paper. [snip] If I use: div id=print-footer Using id=... to call the css and I only get the footer properly placed on the first page

Re: [css-d] Vendor prefixes and validation

2010-12-22 Thread Alan Gresley
On 22/12/2010 11:30 PM, Philippe Wittenbergh wrote: On Dec 22, 2010, at 4:42 PM, Alan Gresley wrote: As far as the CSS 3 backgrounds and borders module is concerned, Gecko 2.0 (Fx 4b), Presto (Opera 11), Trident (IE 9) and WebKit (Chrome 8, Safari 5) have implemented support for all listed

Re: [css-d] safari glitch

2010-12-22 Thread Michael Beaudoin
On Dec 22, 2010, at 2:08 AM, Chetan Crasta wrote: http://ba-doyn.com/junk/ There was some deprecated html like the center tag and align=right etc. and some non-semantic html like br. I've made an example of how you can style the form with valid css and semantic html.

Re: [css-d] Footer on odd pages only

2010-12-22 Thread Tim Arnold
On Wed, Dec 22, 2010 at 9:31 AM, Mark Richards m...@date.net wrote: On Mon, Dec 20, 2010 at 18:40, Evan Panagiotopoulos epana...@gmail.com wrote: I create a string of html documents using php. Each document prints one sheet of paper. [snip] If I use: div id=print-footer Using id=...

Re: [css-d] safari glitch

2010-12-22 Thread Chetan Crasta
Thanks so much. By why is there Yahoo stuff there? It wasn't there in the original was it? Man, I dislike messing with someone else's code, especially when they have been unresponsive. You are using Yahoo hosting for your site: go to http://ba-doyn.com/ and view the generated source (view

Re: [css-d] Vendor prefixes and validation

2010-12-22 Thread Philippe Wittenbergh
On Dec 23, 2010, at 12:20 AM, Alan Gresley wrote: http://css-class.com/test/temp/test-slash.htm The create an oval border. Gecko has supported that syntax for a while (fx 3.5 I think) for border-radius and border-image. Neither WebKit not Gecko have gotten around to support the full

Re: [css-d] Footer on odd pages only

2010-12-22 Thread Evan Panagiotopoulos
Thank you for the suggestions. I tried many variations of the html file. I tried creating one huge file and many, smaller in size, html files contained in one physical file. I will look closer into PDF, though. In terms of ID-ing each page, I tried that too since I create the html using php. I

[css-d] IE5 button element styling

2010-12-22 Thread Rowan @ Jetboy
One for the old-school crowd: Has anyone got a solution for the extra width IE5 adds to the button element, most visible in wide buttons? The overflow: visible fix only works on IE5.5+. I'm trying to create a button with no (or minimal) space around a nested span. Yes, I know I should know better

[css-d] can a div be a link?

2010-12-22 Thread Michael Beaudoin
Is it possible for a div to be a link? I'm trying to make a logo, which is a background in a masthead, as a link. The masthead div also contains the horizontal nav. I was thinking of making another div, float it left and use a negative margin (or a positioning attribute) to position the

Re: [css-d] can a div be a link?

2010-12-22 Thread Kevin Rodenhofer
Use display: block; on link, and set dimensions to fill div. On 12/22/2010 5:36 PM, Michael Beaudoin wrote: Is it possible for a div to be a link? I'm trying to make a logo, which is a background in a masthead, as a link. The masthead div also contains the horizontal nav. I was thinking of

Re: [css-d] can a div be a link?

2010-12-22 Thread Kevin Rodenhofer
I shouldn't try to read when I'm sick. Just size the link with display: block. the position it accordingly. I think that'll work. On 12/22/2010 5:40 PM, Kevin Rodenhofer wrote: Use display: block; on link, and set dimensions to fill div. On 12/22/2010 5:36 PM, Michael Beaudoin wrote: Is it

Re: [css-d] can a div be a link?

2010-12-22 Thread David Laakso
On 12/22/10 5:36 PM, Michael Beaudoin wrote: Is it possible for a div to be a link? I'm trying to make a logo, which is a background in a masthead, as a link. The masthead div also contains the horizontal nav. Thanks, Michael Can you post the page uri to the list? ~d --

Re: [css-d] CSS Coding Style

2010-12-22 Thread Rowan @ Jetboy
snip !--[if lt IE 5.5]link rel=stylesheet type=text/css media=all href=/css/ie5.css /![endif]-- /snip Just been doing some testing on this, and IE5 doesn't pick up the styles inside a !--[if lt IE 5.5] conditional comment. It does pick up ones inside a !--[if lt IE 6] one though, so it looks

Re: [css-d] can a div be a link?

2010-12-22 Thread John D
How about putting a link within a div to make a proper link? Most websites these days have a masthead that is linkable and clicking on it takes you to the main home page. Is this what you are asking? hth Is it possible for a div to be a link? I'm trying to make a logo, which is a

Re: [css-d] CSS Coding Style

2010-12-22 Thread Thierry
!--[if lt IE 5.5]link rel=stylesheet type=text/css media=all href=/css/ie5.css /![endif]-- /snip Just been doing some testing on this, and IE5 doesn't pick up the styles inside a !--[if lt IE 5.5] conditional comment. That's a known issue. To target IE 5.5 use 5.5000 for version vector