Re: [WSG] wrap in print

2009-10-13 Thread Chris Rode
Is the css applied to the print media or just the screen?
ie: is it linked via

link href=your stylesheet here media=screen rel=stylesheet
type=text/css /
?

if so try

link href=your stylesheet here media=all rel=stylesheet
type=text/css /



2009/10/13 Naveen Bhaskar naveenbhas...@live.in

  on screen it floats correctly. but with the code given below , its not
 happenign while printing

  div 
 img
 psome text/p
 psome text/p
 psome text/p
 /div


  *From:* Matthew Pennell matthewpenn...@gmail.com
 *Sent:* Tuesday, October 13, 2009 3:42 PM
 *To:* wsg@webstandardsgroup.org
 *Subject:* Re: [WSG] wrap in print

 On Tue, Oct 13, 2009 at 11:02 AM, Naveen Bhaskar naveenbhas...@live.inwrote:

 Is there any way to wrap the  text around an image  while printing. my
 structure is like this


 You mean you want to float the image? Or something more complicated? You
 can't wrap text completely around an image (i.e. all four sides).

 - Matthew

 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***

 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***

Re: [WSG] unbalanced q tags for extended quotations?

2009-10-01 Thread Chris Rode
How I imagine the markup to be is something like this

pThis is the start of the textqand this is the start of the
quotation/q/ppqthis is the end of the quotation/q and some more
text/p

Off the top of my head I would use something like this css

q{
  quotes: '' '';
}
q:last-child{
  quotes: '' '';
}

Unfortunately, the :last-child psuedo class does not take into account text
nodes after the elements. Which would mean that inserting a class to signify
the no-end quotes would be needed.
style
 .multi-paragraph{
   quotes: '' '';
}
/style
pThis is the start of the textq class=multi-paragraphand this is the
start of the quotation/q/ppqthis is the end of the quotation/q and
some more text/p


Can anyone else think of a way to do this without the class injection?

2009/10/1 Savl Ekk ankhscri...@gmail.com

 Maybe 'blockquote' tag? And some styles to it.

 2009/10/1 Robert Turner r...@flexadata.com

  There is quot; and apos;, but I don't think IE supports apos;. I think
 the Unicode entity is something like #39; or #37;.  You could also declare
 quot as an entity in your doctype to assist IE (IE needs help).

 Would that solve your problem?


 T. R. Valentine wrote:

 Quotations which are more than one paragraph in length are supposed to
 get opening quotation marks for each paragraph and only a single
 closing quotation mark at the very end (in English). It does not seem
 this can be done using semantic markup, i.e. q tags. Is there some way
 to use q tags and get the UA to stop treating each paragraph as a new
 nested quote?





 --
   *Rob Turner*
 Founder

 www. f l e x a d a t a .com http://flexadata.com
 --
  *+1 415 448 7652*
 *+61 7 3040 1337*




 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***



 ***
 List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
 Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
 Help: memberh...@webstandardsgroup.org
 ***



***
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: memberh...@webstandardsgroup.org
***