RE: [WSG] which tag to use for link to reference?

2012-06-30 Thread Greg Gamble
Are you referring to a citation tag cite?  

Greg


-Original Message-
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On
Behalf Of tee
Sent: Friday, June 29, 2012 11:11 PM
To: wsg@webstandardsgroup.org
Subject: [WSG] which tag to use for link to reference?

In scholarly paper and report, we often use number (e.g.. 1, 2. 3,  displays
in sup) in between paragraphs when referencing others' work. What is the
name of the tag used in such manner in HTML or ebook format?


Thanks!

Tee



***
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] Combining media stylesheets - best practice

2012-03-01 Thread Greg Gamble
Doing it your way would be loading both print and screen css files. Using
the style sheet media tag will only load the css that's needed i.e. ...
screen or print
 
Greg
 


  _  

From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On
Behalf Of Henrik Madsen
Sent: Thursday, March 01, 2012 4:54 PM
To: wsg@webstandardsgroup.org
Subject: Re: [WSG] Combining media stylesheets - best practice




I would say minimising http requests is 'best practice.' 

Henrik


 http://www.igenerator.com.au/ GENERATOR


Henrik Madsen
+61 08 9387 1250
hen...@igenerator.com.au
www.igenerator.com.au http://www.igenerator.com.au/ 

On 02/03/2012, at 8:40 AM, Ben Zeller wrote:


Hi everyone,
On a recent project we've decided to combine our @print media styles at the
bottom of our main stylesheet. eg.
@media print { /* Print styles */}

In our global template, the stylesheet is imported with the media attribute
screen. Using this attribute, the print styles are ignored.
link rel=stylesheet href=css/style.css media=screen

The following markup options offer a solution to the problem:

1. link rel=stylesheet href=css/style.css
2. link rel=stylesheet href=css/style.css media=all

I guess the question I have is whether there are any caveats with either
method, and if there is a best practice solution?
The doc type is XHTML 1.0 Transitional if this is relevant.

Kind regards,
Ben Zeller

***
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] Content div sticking out the side of container div

2011-12-02 Thread Greg Gamble
 
Outer Div has a fixed width.

-Original Message-
From: li...@webstandardsgroup.org [mailto:li...@webstandardsgroup.org] On
Behalf Of Stevio
Sent: Friday, December 02, 2011 6:42 PM
To: Web Standards Group
Subject: [WSG] Content div sticking out the side of container div

Somehow I do not seem to have come across this problem before. I have two
divs, one contained within the other. If the viewport of the browser is
resized to be smaller than the contents of the inner div, the inner div
sticks out the side of the outer container div, which continues to resize
with the browser.

Surely the outer div should stop shrinking when it reaches the width of its
inner div, even if the viewport continues to be shrunk?

How can I fix this so that the outer div will not become any smaller than
the width of its inner div, when the width of the inner div will be unknown?

Here is example code that illustrates this. In my example, the inner div is
set to a fixed width, but for the web site I am developing, I will not know
the width of the inner div.


!DOCTYPE html
htmlheadtitleTest/title
style type=text/css
#wrap {
background:#CCC;
border:2px solid blue;
}
#contents {
width: 800px;
background:#99F;
border:2px solid yellow;
}
/style
/head
body
div id=wrap
Test
div id=contentstest/div
Test
/div
/body
/html


Thanks,
Stephen 



***
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
***