Re: [WSG] quotes on q tag

2004-05-31 Thread Roger Johansson
On 31 maj 2004, at 08.34, Lea de Groot wrote:
How are people handling putting quotes on q tags?
I used a quote yesterday and while moz (I think) and Safari both had
quotes built in, IE did not.
Is there a definitive approach?
I though I might do it manually (and thus reliably), but setting
q {
  quotes: none;
 }
didnt seem to affect the compliant browsers.
IE/Win doesn't support the q element properly, so you can either let 
users of that browser miss out on the quotes, or add quotes manually 
and use CSS to turn off the automatically added quotes in modern 
browsers:

q {
quotes:none;
}
q:before {
content: "";
}
q:after {
content: "";
}
The above does not work in IE5/Mac, so people using that will get 
double quotes.

This way you can use the typographically correct quote marks for the 
language used, and not the standard " that all browsers seem to add by 
default.

/Roger
--
http://www.456bereastreet.com/
*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
* 



Re: [WSG] quotes on q tag

2004-05-31 Thread Razvan Pop
Lindsay Evans wrote:
[EMAIL PROTECTED] wrote:
 

How are people handling putting quotes on q tags?
I used a quote yesterday and while moz (I think) and Safari both had
quotes built in, IE did not. Is there a definitive approach?
I though I might do it manually (and thus reliably), but setting
q {
 quotes: none;
}
didnt seem to affect the compliant browsers.
   

This works in Firefox 0.8, no idea about other browsers:
q:before, q:after {
content: "";
}
 

For sure it won't work in Internet Explorer. I think it works in Opera 
7.50 too.

Lea
~ and if anyone can tell me what to call the little blocks of
text that
are pulled out and the surrounding paragraph wraps around it,
I will be
forever in your debt! Makes googling difficult when you can't remember
what the silly things are called
   

Pull quotes?
http://desktoppub.about.com/library/glossary/bldef-pullquote.htm
 

*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
* 



Re: [WSG] quotes on q tag

2004-05-31 Thread Lea de Groot
> pull-quote

Thanks guys!

warmly,
Lea
-- 
Lea de Groot
Elysian Systems - I Understand the Internet 
Web Design, Usability, Information Architecture, Search Engine 
Optimisation
Brisbane, Australia
*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
* 



RE: [WSG] quotes on q tag

2004-05-31 Thread Lindsay Evans

[EMAIL PROTECTED] wrote:
> How are people handling putting quotes on q tags?
> I used a quote yesterday and while moz (I think) and Safari both had
> quotes built in, IE did not. Is there a definitive approach?
> I though I might do it manually (and thus reliably), but setting
> q {
>   quotes: none;
>  }
> didnt seem to affect the compliant browsers.

This works in Firefox 0.8, no idea about other browsers:

q:before, q:after {
content: "";
}

> Lea
> ~ and if anyone can tell me what to call the little blocks of
> text that
> are pulled out and the surrounding paragraph wraps around it,
> I will be
> forever in your debt! Makes googling difficult when you can't remember
> what the silly things are called

Pull quotes?
http://desktoppub.about.com/library/glossary/bldef-pullquote.htm

-- 
 Lindsay Evans.
 Developer,
 Red Square Productions.

 [p] 8596.4000
 [f] 8596.4001
 [w] www.redsquare.com.au

*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
* 



Re: [WSG] quotes on q tag

2004-05-30 Thread Rick Faaberg
On 5/30/04 11:34 PM "Lea de Groot"
<[EMAIL PROTECTED]> sent this out:

> ~ and if anyone can tell me what to call the little blocks of text that
> are pulled out

"pull-quote"

HTH

Rick Faaberg

*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
* 



[WSG] quotes on q tag

2004-05-30 Thread Lea de Groot
How are people handling putting quotes on q tags?
I used a quote yesterday and while moz (I think) and Safari both had 
quotes built in, IE did not.
Is there a definitive approach?
I though I might do it manually (and thus reliably), but setting 
q {
  quotes: none;
 }
didnt seem to affect the compliant browsers.

Lea
~ and if anyone can tell me what to call the little blocks of text that 
are pulled out and the surrounding paragraph wraps around it, I will be 
forever in your debt! Makes googling difficult when you can't remember 
what the silly things are called
-- 
Lea de Groot
Elysian Systems - I Understand the Internet 
Web Design, Usability, Information Architecture, Search Engine 
Optimisation
Brisbane, Australia
*
The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list & getting help
*