<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<id>tag:old.nabble.com,2006:forum-610</id>
	<title>Nabble - Cold Fusion - CSS</title>
	<updated>2006-11-02T08:24:52Z</updated>
	<link rel="self" type="application/atom+xml" href="http://old.nabble.com/Cold-Fusion---CSS-f610.xml" />
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Cold-Fusion---CSS-f610.html" />
	<subtitle type="html"></subtitle>
	
<entry>
	<id>tag:old.nabble.com,2006:post-7137071</id>
	<title>RE: border question</title>
	<published>2006-11-02T08:24:52Z</published>
	<updated>2006-11-02T08:24:52Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Standards Rendering Mode
&lt;br&gt;&lt;br&gt;Left Margin + Left Border + left padding + width &amp;nbsp;+ right padding + right
&lt;br&gt;border + right margin = parent content width 
&lt;br&gt;&lt;br&gt;Make sure that you initially zero out all margins and paddings in your style
&lt;br&gt;sheet before you start setting them. 
&lt;br&gt;All browsers have internal stylesheets that have default values. &amp;nbsp;These
&lt;br&gt;values are not the same across browsers
&lt;br&gt;&lt;br&gt;For all browsers but IE5/6 &amp;nbsp;
&lt;br&gt;&amp;nbsp;html * {margin:0; padding:0}
&lt;br&gt;&lt;br&gt;For IE5/6, create a comma delimited list of all block level elements (div,
&lt;br&gt;hx, p, ul, li, etc) and then apply the same margin and padding as above.
&lt;br&gt;&lt;br&gt;That way margin and paddings are zero'd out across browsers and you attain a
&lt;br&gt;much higher level of consistency.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Michael Dinowitz [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7137071&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdinowit@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, November 02, 2006 11:14 AM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: Re: border question
&lt;br&gt;&lt;br&gt;I'm using HTML 4.01 strict and there is always a perceivable difference in
&lt;br&gt;spacing from IE to Mozilla. I've been able to combat it in some cases using
&lt;br&gt;absolute positioning, but that only works for the heading area which has
&lt;br&gt;undergone some SEO alterations. My goal is to be very precise in my page
&lt;br&gt;layout. The left hand bar has 130px. The center has 728px and the right hand
&lt;br&gt;bar has 150px. The result of this is 108px, which is exactly the browser
&lt;br&gt;screen size when resolution is set to 1024 and the page has a scroll bar. I
&lt;br&gt;can make it 1010 without any major loss which gives me 2px for a border
&lt;br&gt;around the content.
&lt;br&gt;If the border is part of the content area, then 730px is 728 content and 2px
&lt;br&gt;border, right? If it's seperate from the content area, then the area is 728
&lt;br&gt;and the border is 2.
&lt;br&gt;&lt;br&gt;&amp;gt; IE7 still has a quirks mode, so if you are not using a doctype of HTML
&lt;br&gt;&amp;gt; 4.01
&lt;br&gt;&amp;gt; strict or xHTML 1.0 strict (which are the only ones that render 
&lt;br&gt;&amp;gt; standards mode across browsers, then it will probably use the broken box
&lt;br&gt;type.
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Using the xml prolog in IE6 throws it into quirks mode. &amp;nbsp;IE7 will 
&lt;br&gt;&amp;gt; render both those doctypes in standards mode regardless of the xml prolog.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra Clark
&lt;br&gt;&amp;gt; ==============================
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;&amp;gt; Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Rick Root [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7137071&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rick.root@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Thursday, November 02, 2006 8:51 AM
&lt;br&gt;&amp;gt; To: CSS
&lt;br&gt;&amp;gt; Subject: Re: border question
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra Clark wrote:
&lt;br&gt;&amp;gt;&amp;gt; Rule of thumb is that the borders + margin + padding + content width 
&lt;br&gt;&amp;gt;&amp;gt; must equal 100% of the parent's content width.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; That is the standard box model.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; IE 5 and IE6 in quirks mode, do it differently. In these browsers, 
&lt;br&gt;&amp;gt;&amp;gt; borders and padding are in addition to the content width.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra - have you done any testing of this in IE7? &amp;nbsp;I suppose it's 
&lt;br&gt;&amp;gt; exactly the same as it was before.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Rick
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3294&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3294&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/border-question-tp7133191p7137071.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7136877</id>
	<title>Re: border question</title>
	<published>2006-11-02T08:14:23Z</published>
	<updated>2006-11-02T08:14:23Z</updated>
	<author>
		<name>Michael Dinowitz</name>
	</author>
	<content type="html">I'm using HTML 4.01 strict and there is always a perceivable difference in 
&lt;br&gt;spacing from IE to Mozilla. I've been able to combat it in some cases using 
&lt;br&gt;absolute positioning, but that only works for the heading area which has 
&lt;br&gt;undergone some SEO alterations. My goal is to be very precise in my page 
&lt;br&gt;layout. The left hand bar has 130px. The center has 728px and the right hand 
&lt;br&gt;bar has 150px. The result of this is 108px, which is exactly the browser 
&lt;br&gt;screen size when resolution is set to 1024 and the page has a scroll bar. I 
&lt;br&gt;can make it 1010 without any major loss which gives me 2px for a border 
&lt;br&gt;around the content.
&lt;br&gt;If the border is part of the content area, then 730px is 728 content and 2px 
&lt;br&gt;border, right? If it's seperate from the content area, then the area is 728 
&lt;br&gt;and the border is 2.
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; IE7 still has a quirks mode, so if you are not using a doctype of HTML 
&lt;br&gt;&amp;gt; 4.01
&lt;br&gt;&amp;gt; strict or xHTML 1.0 strict (which are the only ones that render standards
&lt;br&gt;&amp;gt; mode across browsers, then it will probably use the broken box type.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Using the xml prolog in IE6 throws it into quirks mode. &amp;nbsp;IE7 will render
&lt;br&gt;&amp;gt; both those doctypes in standards mode regardless of the xml prolog.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra Clark
&lt;br&gt;&amp;gt; ==============================
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;&amp;gt; Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Rick Root [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7136877&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rick.root@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Thursday, November 02, 2006 8:51 AM
&lt;br&gt;&amp;gt; To: CSS
&lt;br&gt;&amp;gt; Subject: Re: border question
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra Clark wrote:
&lt;br&gt;&amp;gt;&amp;gt; Rule of thumb is that the borders + margin + padding + content width
&lt;br&gt;&amp;gt;&amp;gt; must equal 100% of the parent's content width.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; That is the standard box model.
&lt;br&gt;&amp;gt;&amp;gt;
&lt;br&gt;&amp;gt;&amp;gt; IE 5 and IE6 in quirks mode, do it differently. In these browsers,
&lt;br&gt;&amp;gt;&amp;gt; borders and padding are in addition to the content width.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra - have you done any testing of this in IE7? &amp;nbsp;I suppose it's exactly
&lt;br&gt;&amp;gt; the same as it was before.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Rick
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3293&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3293&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/border-question-tp7133191p7136877.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7134466</id>
	<title>RE: border question</title>
	<published>2006-11-02T06:21:22Z</published>
	<updated>2006-11-02T06:21:22Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">IE7 still has a quirks mode, so if you are not using a doctype of HTML 4.01
&lt;br&gt;strict or xHTML 1.0 strict (which are the only ones that render standards
&lt;br&gt;mode across browsers, then it will probably use the broken box type.
&lt;br&gt;&lt;br&gt;Using the xml prolog in IE6 throws it into quirks mode. &amp;nbsp;IE7 will render
&lt;br&gt;both those doctypes in standards mode regardless of the xml prolog. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Rick Root [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7134466&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rick.root@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, November 02, 2006 8:51 AM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: Re: border question
&lt;br&gt;&lt;br&gt;Sandra Clark wrote:
&lt;br&gt;&amp;gt; Rule of thumb is that the borders + margin + padding + content width 
&lt;br&gt;&amp;gt; must equal 100% of the parent's content width.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; That is the standard box model.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; IE 5 and IE6 in quirks mode, do it differently. In these browsers, 
&lt;br&gt;&amp;gt; borders and padding are in addition to the content width.
&lt;br&gt;&lt;br&gt;Sandra - have you done any testing of this in IE7? &amp;nbsp;I suppose it's exactly
&lt;br&gt;the same as it was before.
&lt;br&gt;&lt;br&gt;Rick
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3292&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3292&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/border-question-tp7133191p7134466.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7134198</id>
	<title>Re: border question</title>
	<published>2006-11-02T06:07:02Z</published>
	<updated>2006-11-02T06:07:02Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">Specify a (valid) DOCTYPE and IE6 will work render borders in
&lt;br&gt;accordance with the standard box model.
&lt;br&gt;If IE7 is different to that I'd be very surprised.
&lt;br&gt;&lt;br&gt;On 11/2/06, Rick Root &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7134198&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;rick.root@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Sandra Clark wrote:
&lt;br&gt;&amp;gt; &amp;gt; Rule of thumb is that the borders + margin + padding + content width must
&lt;br&gt;&amp;gt; &amp;gt; equal 100% of the parent's content width.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; That is the standard box model.
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt; IE 5 and IE6 in quirks mode, do it differently. In these browsers, borders
&lt;br&gt;&amp;gt; &amp;gt; and padding are in addition to the content width.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra - have you done any testing of this in IE7? &amp;nbsp;I suppose it's
&lt;br&gt;&amp;gt; exactly the same as it was before.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Rick
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3291&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3291&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/border-question-tp7133191p7134198.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7133858</id>
	<title>Re: border question</title>
	<published>2006-11-02T05:50:18Z</published>
	<updated>2006-11-02T05:50:18Z</updated>
	<author>
		<name>Rick Root</name>
	</author>
	<content type="html">Sandra Clark wrote:
&lt;br&gt;&amp;gt; Rule of thumb is that the borders + margin + padding + content width must
&lt;br&gt;&amp;gt; equal 100% of the parent's content width. &amp;nbsp;
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; That is the standard box model.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; IE 5 and IE6 in quirks mode, do it differently. In these browsers, borders
&lt;br&gt;&amp;gt; and padding are in addition to the content width.
&lt;br&gt;&lt;br&gt;Sandra - have you done any testing of this in IE7? &amp;nbsp;I suppose it's 
&lt;br&gt;exactly the same as it was before.
&lt;br&gt;&lt;br&gt;Rick
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3290&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3290&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/border-question-tp7133191p7133858.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7133641</id>
	<title>RE: border question</title>
	<published>2006-11-02T05:35:39Z</published>
	<updated>2006-11-02T05:35:39Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Rule of thumb is that the borders + margin + padding + content width must
&lt;br&gt;equal 100% of the parent's content width. &amp;nbsp;
&lt;br&gt;&lt;br&gt;That is the standard box model.
&lt;br&gt;&lt;br&gt;IE 5 and IE6 in quirks mode, do it differently. In these browsers, borders
&lt;br&gt;and padding are in addition to the content width.
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Michael Dinowitz [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=7133641&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdinowit@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, November 02, 2006 6:59 AM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: border question
&lt;br&gt;&lt;br&gt;This is puzzling me a little. Lets say I have a page with a content area of
&lt;br&gt;728px wide. This area is inside a table (kill me later) and the table width
&lt;br&gt;is set to 730. Could I set a border of 1px around the whole text area and
&lt;br&gt;still be within the table defined 730?
&lt;br&gt;&lt;br&gt;Bottom line question is: Will a border be part of the content 'box' or in
&lt;br&gt;addition to it?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3289&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3289&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/border-question-tp7133191p7133641.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-7133191</id>
	<title>border question</title>
	<published>2006-11-02T03:59:25Z</published>
	<updated>2006-11-02T03:59:25Z</updated>
	<author>
		<name>Michael Dinowitz</name>
	</author>
	<content type="html">This is puzzling me a little. Lets say I have a page with a content area of 728px wide. This area is inside a table (kill me later) and the table width is set to 730. Could I set a border of 1px around the whole text area and still be within the table defined 730?
&lt;br&gt;&lt;br&gt;Bottom line question is: Will a border be part of the content 'box' or in addition to it?
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3288&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3288&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/border-question-tp7133191p7133191.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6504685</id>
	<title>Re: CSS UL IE help</title>
	<published>2006-09-26T04:58:59Z</published>
	<updated>2006-09-26T04:58:59Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">(Ooops, sorry for raising the dead - I just noticed the date on this thread is six months old.)
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Using * works fine with IE6. (In standard mode; haven't bothered 
&lt;br&gt;&amp;gt; testing in Quirks mode - anyone who doesn't supply a DOCTYPE deserves 
&lt;br&gt;&amp;gt; any incompatibilities they get.)
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; And I frequently do * {margin: 0px; border-width: 0px; padding: 0px;},
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; and then set anything that I want edges on (ie: input {border-width: 
&lt;br&gt;&amp;gt; 1px;}) 
&lt;br&gt;&amp;gt; and it doesn't get over-written by the *.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Peter
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; &amp;gt;The problem with that is twofold
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;1) Its universal. I'm not sure if it would overwrite other items
&lt;br&gt;&amp;gt; &amp;gt;2) IE6 and below doesnt support * 
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;-----Original Message-----
&lt;br&gt;&amp;gt; &amp;gt;From: Michael T. Tangorre [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6504685&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mtangorre@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt; &amp;gt;Sent: Friday, March 03, 2006 11:38 AM
&lt;br&gt;&amp;gt; &amp;gt;To: CSS
&lt;br&gt;&amp;gt; &amp;gt;Subject: RE: CSS UL IE help
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;Just out of curiosity, does this work as well:
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt; &amp;gt;* {
&lt;br&gt;&amp;gt; &amp;gt;	margin: 0;
&lt;br&gt;&amp;gt; &amp;gt;	padding: 0;
&lt;br&gt;&amp;gt; &amp;gt;}
&lt;br&gt;&amp;gt; &amp;gt;
&lt;br&gt;&amp;gt;?
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3221&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3221&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-CSS-UL-IE-help-tp6504666p6504685.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-6504666</id>
	<title>Re: CSS UL IE help</title>
	<published>2006-09-26T04:57:08Z</published>
	<updated>2006-09-26T04:57:08Z</updated>
	<author>
		<name>Peter Boughton</name>
	</author>
	<content type="html">Using * works fine with IE6. (In standard mode; haven't bothered testing in Quirks mode - anyone who doesn't supply a DOCTYPE deserves any incompatibilities they get.)
&lt;br&gt;&lt;br&gt;And I frequently do * {margin: 0px; border-width: 0px; padding: 0px;},
&lt;br&gt;and then set anything that I want edges on (ie: input {border-width: 1px;}) 
&lt;br&gt;and it doesn't get over-written by the *.
&lt;br&gt;&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Peter
&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt;The problem with that is twofold
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;1) Its universal. I'm not sure if it would overwrite other items
&lt;br&gt;&amp;gt;2) IE6 and below doesnt support * 
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;-----Original Message-----
&lt;br&gt;&amp;gt;From: Michael T. Tangorre [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=6504666&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mtangorre@...&lt;/a&gt;] 
&lt;br&gt;&amp;gt;Sent: Friday, March 03, 2006 11:38 AM
&lt;br&gt;&amp;gt;To: CSS
&lt;br&gt;&amp;gt;Subject: RE: CSS UL IE help
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;Just out of curiosity, does this work as well:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;* {
&lt;br&gt;&amp;gt;	margin: 0;
&lt;br&gt;&amp;gt;	padding: 0;
&lt;br&gt;&amp;gt;}
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;?
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3220&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3220&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/subscribe.cfm&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Re%3A-CSS-UL-IE-help-tp6504666p6504666.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5505073</id>
	<title>RE: Please review - Good CSS?</title>
	<published>2006-07-26T09:10:05Z</published>
	<updated>2006-07-26T09:10:05Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">The CSS doesn't validate.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://jigsaw.w3.org/css-validator/validator?profile=css2&amp;warning=2&amp;uri=http&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://jigsaw.w3.org/css-validator/validator?profile=css2&amp;warning=2&amp;uri=http&lt;/a&gt;&lt;br&gt;%3A%2F%2Fwww.fusionauthority.com%2F_%2Fcsslayout.htm 
&lt;br&gt;&lt;br&gt;Its okay code, but you shouldn't be using the inline styles. &amp;nbsp;All styles
&lt;br&gt;should be in your external style sheet. Inline styles are deprecated and
&lt;br&gt;they take away from the ease of changing things in your HTML without
&lt;br&gt;worrying about presentation. &amp;nbsp;Content and Presentation should be separate. &amp;nbsp;
&lt;br&gt;&lt;br&gt;Also, way too many classes for my taste. &amp;nbsp;Put ids in your divs and descend
&lt;br&gt;from there.
&lt;br&gt;&lt;br&gt;Example
&lt;br&gt;&lt;br&gt;You currently have.
&lt;br&gt;div style=&amp;quot;width: 138px; padding-top: 18px;float:right;&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;div class=&amp;quot;shoutbox&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;a href=&amp;quot;/quarterly&amp;quot; STYLE=&amp;quot;text-decoration: none;&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;h2 class=&amp;quot;shouthead&amp;quot;&amp;gt;
&lt;br&gt;Fusion Authority Quarterly Update
&lt;br&gt;&amp;lt;img src=&amp;quot;/_/faqu1.jpg&amp;quot; alt=&amp;quot;Fusion Authority Quarterly Update image&amp;quot;
&lt;br&gt;border=&amp;quot;0&amp;quot; align=&amp;quot;middle&amp;quot;&amp;gt;
&lt;br&gt;&amp;lt;/h2&amp;gt;
&lt;br&gt;&amp;lt;p class=&amp;quot;shoutbody&amp;quot;&amp;gt;
&lt;br&gt;Order the Fusion Authority Quarterly Update and keep your ColdFusion skills
&lt;br&gt;and knowledge up to date.
&lt;br&gt;&amp;lt;/p&amp;gt;
&lt;br&gt;&amp;lt;/a&amp;gt;
&lt;br&gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&lt;br&gt;Better structure would be
&lt;br&gt;&amp;lt;div id=&amp;quot;rightside&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div class=&amp;quot;shoutbox&amp;quot;&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;h2&amp;gt;&amp;lt;a href=&amp;quot;/quarterly&amp;quot;&amp;gt;Fusion Authority Quarterly
&lt;br&gt;Update&amp;gt;&amp;lt;/a&amp;gt;&amp;lt;/h2&amp;gt;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;p&amp;gt;Order the Fusion Authority Quarterly Update and keep your
&lt;br&gt;ColdFusion skills and knowledge up to date.&amp;lt;/p&amp;gt; 
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;
&lt;br&gt;&amp;lt;/div&amp;gt;
&lt;br&gt;&lt;br&gt;Styling can then be done as
&lt;br&gt;&amp;nbsp;div#rightside{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; float: right;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding-top: 18px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 138px;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;div#rightside .shoutbox{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: #CCCCFF;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border: 1px solid #000000;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; font-size: 100%;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 2px 2px 6px 2px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; overflow: hidden;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 130px;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;div#rightside .shoutbox h2{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: #333366;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-image: background-image: url(/_/faqu1.jpg);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-position: // Set it correctly and don't be afraid to
&lt;br&gt;change padding to accommodate it.;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-repeat: none;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; color: #FFFFFF;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; display: block;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; font-size: 100%;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; font-weight: bold;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 2px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; text-align: center;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;div#rightside .shoutbox p{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; color: #000000;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 2px;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Your anchor is an inline body element, it should be surrounded by your h2,
&lt;br&gt;not surrounding it. The image can be set via CSS rather than in the HTML,
&lt;br&gt;since it doesn't really add that much to the content.
&lt;br&gt;&lt;br&gt;Descendant Selectors are your friend. &amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&lt;br&gt;CSS HANDS ON
&lt;br&gt;New York City, October 10-13, 2006.
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Michael Dinowitz [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5505073&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdinowit@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, July 26, 2006 10:47 AM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: Re: Please review - Good CSS?
&lt;br&gt;&lt;br&gt;This is what happens with no sleep, you forget to post an url with a
&lt;br&gt;request. :)
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/_/csslayout.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/_/csslayout.htm&lt;/a&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I think I've just finished the rewrite of the Fusion Authority site in 
&lt;br&gt;&amp;gt; CSS. Actually, it's like 95% done with a single table in the middle of 
&lt;br&gt;&amp;gt; the front page to go. Before I go deal with that, I wanted to know 
&lt;br&gt;&amp;gt; what people thought of the layout. Is it legal CSS? Does it break on 
&lt;br&gt;&amp;gt; some browser I'm not familiar with? What do you think?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I went for a 3 column display and treated the whole thing as blocks on 
&lt;br&gt;&amp;gt; a light blue background. The only thing that worries me is if the 
&lt;br&gt;&amp;gt; floats are wrong. In order to get each block working will with its 
&lt;br&gt;&amp;gt; neighbor, I used a number of floats to the left with the far right 
&lt;br&gt;&amp;gt; column being a right float. When I add in the 4th column, I'll be 
&lt;br&gt;&amp;gt; doing so by making the far right into a div and having 2 columns in 
&lt;br&gt;&amp;gt; the div. It 'feels' like it'll work, but I'm not 100% convinced.
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As for why a 4th column, I've seen that 39%+ of my visitors are on a
&lt;br&gt;&amp;gt; 1024 wide monitor or better so I might as well give them some extra 
&lt;br&gt;&amp;gt; content.
&lt;/div&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3044&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3044&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-review---Good-CSS--tp5500011p5505073.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5504550</id>
	<title>Re: Please review - Good CSS?</title>
	<published>2006-07-26T08:47:08Z</published>
	<updated>2006-07-26T08:47:08Z</updated>
	<author>
		<name>Michael Dinowitz</name>
	</author>
	<content type="html">This is what happens with no sleep, you forget to post an url with a request. :)
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/_/csslayout.htm&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/_/csslayout.htm&lt;/a&gt;&lt;br&gt;&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; I think I've just finished the rewrite of the Fusion Authority site in 
&lt;br&gt;&amp;gt; CSS. Actually, it's like 95% done with a single table in the middle of 
&lt;br&gt;&amp;gt; the front page to go. Before I go deal with that, I wanted to know 
&lt;br&gt;&amp;gt; what people thought of the layout. Is it legal CSS? Does it break on 
&lt;br&gt;&amp;gt; some browser I'm not familiar with? What do you think?
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; I went for a 3 column display and treated the whole thing as blocks on 
&lt;br&gt;&amp;gt; a light blue background. The only thing that worries me is if the 
&lt;br&gt;&amp;gt; floats are wrong. In order to get each block working will with its 
&lt;br&gt;&amp;gt; neighbor, I used a number of floats to the left with the far right 
&lt;br&gt;&amp;gt; column being a right float. When I add in the 4th column, I'll be 
&lt;br&gt;&amp;gt; doing so by making the far right into a div and having 2 columns in 
&lt;br&gt;&amp;gt; the div. It 'feels' like it'll work, but I'm not 100% convinced. 
&lt;br&gt;&amp;gt; 
&lt;br&gt;&amp;gt; As for why a 4th column, I've seen that 39%+ of my visitors are on a 
&lt;br&gt;&amp;gt; 1024 wide monitor or better so I might as well give them some extra 
&lt;br&gt;&amp;gt; content.
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3043&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3043&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-review---Good-CSS--tp5500011p5504550.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5500011</id>
	<title>Please review - Good CSS?</title>
	<published>2006-07-26T03:18:05Z</published>
	<updated>2006-07-26T03:18:05Z</updated>
	<author>
		<name>Michael Dinowitz</name>
	</author>
	<content type="html">I think I've just finished the rewrite of the Fusion Authority site in CSS. Actually, it's like 95% done with a single table in the middle of the front page to go. Before I go deal with that, I wanted to know what people thought of the layout. Is it legal CSS? Does it break on some browser I'm not familiar with? What do you think?
&lt;br&gt;&lt;br&gt;I went for a 3 column display and treated the whole thing as blocks on a light blue background. The only thing that worries me is if the floats are wrong. In order to get each block working will with its neighbor, I used a number of floats to the left with the far right column being a right float. When I add in the 4th column, I'll be doing so by making the far right into a div and having 2 columns in the div. It 'feels' like it'll work, but I'm not 100% convinced. 
&lt;br&gt;&lt;br&gt;As for why a 4th column, I've seen that 39%+ of my visitors are on a 1024 wide monitor or better so I might as well give them some extra content.
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3042&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3042&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Please-review---Good-CSS--tp5500011p5500011.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5468002</id>
	<title>Re: quote inside or outside anchor</title>
	<published>2006-07-24T07:56:55Z</published>
	<updated>2006-07-24T07:56:55Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">That was my thought too - I'd prefer to specify a special a for all q
&lt;br&gt;tags, rather than the other way around.
&lt;br&gt;&lt;br&gt;On 7/24/06, Sandra Clark &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5468002&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sllists@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; True, unfortunately, the &amp;lt;q&amp;gt; element is not supported by most browsers.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.aaronsw.com/2002/htmlquotes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aaronsw.com/2002/htmlquotes&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I still think structurally, that the anchor should go inside both. &amp;nbsp;But for
&lt;br&gt;&amp;gt; inline elements, it really doesn't matter structurally, &amp;nbsp;do what you think
&lt;br&gt;&amp;gt; will work best with the CSS you are trying to write (do you want the anchor
&lt;br&gt;&amp;gt; to inherit from the quote, or do you want the quote to inherit from the
&lt;br&gt;&amp;gt; anchor?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; When I ask myself that question, I still opt to have the anchor inside the
&lt;br&gt;&amp;gt; quote.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra Clark
&lt;br&gt;&amp;gt; ==============================
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;&amp;gt; Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; CSS HANDS ON
&lt;br&gt;&amp;gt; New York City, October 10-13, 2006.
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: James Holmes [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5468002&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;james.holmes@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Monday, July 24, 2006 8:20 AM
&lt;br&gt;&amp;gt; To: CSS
&lt;br&gt;&amp;gt; Subject: Re: quote inside or outside anchor
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; q is an inline element, not block-level; blockquote is the block-level
&lt;br&gt;&amp;gt; element.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; On 7/24/06, Sandra Clark &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5468002&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sllists@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; &amp;gt; Anchor should go inside the &amp;lt;q&amp;gt; or &amp;lt;blockquote&amp;gt; tags. Since an anchor
&lt;br&gt;&amp;gt; &amp;gt; (&amp;lt;a&amp;gt;) tag is an inline layout item, it can be contained by, but cannot
&lt;br&gt;&amp;gt; &amp;gt; contain a block level element (quotes)
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; CFAJAX docs and other useful articles:
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3032&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3032&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/quote-inside-or-outside-anchor-tp5460675p5468002.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5467029</id>
	<title>RE: quote inside or outside anchor</title>
	<published>2006-07-24T07:01:18Z</published>
	<updated>2006-07-24T07:01:18Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">True, unfortunately, the &amp;lt;q&amp;gt; element is not supported by most browsers.
&lt;br&gt;&lt;a href=&quot;http://www.aaronsw.com/2002/htmlquotes&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.aaronsw.com/2002/htmlquotes&lt;/a&gt;&lt;br&gt;&lt;br&gt;I still think structurally, that the anchor should go inside both. &amp;nbsp;But for
&lt;br&gt;inline elements, it really doesn't matter structurally, &amp;nbsp;do what you think
&lt;br&gt;will work best with the CSS you are trying to write (do you want the anchor
&lt;br&gt;to inherit from the quote, or do you want the quote to inherit from the
&lt;br&gt;anchor? &amp;nbsp;
&lt;br&gt;&lt;br&gt;When I ask myself that question, I still opt to have the anchor inside the
&lt;br&gt;quote. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&lt;br&gt;CSS HANDS ON
&lt;br&gt;New York City, October 10-13, 2006.
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&amp;nbsp;
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: James Holmes [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5467029&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;james.holmes@...&lt;/a&gt;] 
&lt;br&gt;Sent: Monday, July 24, 2006 8:20 AM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: Re: quote inside or outside anchor
&lt;br&gt;&lt;br&gt;q is an inline element, not block-level; blockquote is the block-level
&lt;br&gt;element.
&lt;br&gt;&lt;br&gt;On 7/24/06, Sandra Clark &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5467029&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sllists@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Anchor should go inside the &amp;lt;q&amp;gt; or &amp;lt;blockquote&amp;gt; tags. Since an anchor 
&lt;br&gt;&amp;gt; (&amp;lt;a&amp;gt;) tag is an inline layout item, it can be contained by, but cannot 
&lt;br&gt;&amp;gt; contain a block level element (quotes)
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;CFAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3031&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/groups/CSS/message.cfm/messageid:3031&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/quote-inside-or-outside-anchor-tp5460675p5467029.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5466343</id>
	<title>Re: quote inside or outside anchor</title>
	<published>2006-07-24T06:20:11Z</published>
	<updated>2006-07-24T06:20:11Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">q is an inline element, not block-level; blockquote is the block-level element.
&lt;br&gt;&lt;br&gt;On 7/24/06, Sandra Clark &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5466343&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sllists@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Anchor should go inside the &amp;lt;q&amp;gt; or &amp;lt;blockquote&amp;gt; tags. Since an anchor (&amp;lt;a&amp;gt;)
&lt;br&gt;&amp;gt; tag is an inline layout item, it can be contained by, but cannot contain a
&lt;br&gt;&amp;gt; block level element (quotes)
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;CFAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com//groups/CSS/message.cfm/messageid:3030&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com//groups/CSS/message.cfm/messageid:3030&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/quote-inside-or-outside-anchor-tp5460675p5466343.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5465799</id>
	<title>RE: quote inside or outside anchor</title>
	<published>2006-07-24T05:39:41Z</published>
	<updated>2006-07-24T05:39:41Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Anchor should go inside the &amp;lt;q&amp;gt; or &amp;lt;blockquote&amp;gt; tags. Since an anchor (&amp;lt;a&amp;gt;)
&lt;br&gt;tag is an inline layout item, it can be contained by, but cannot contain a
&lt;br&gt;block level element (quotes) 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&lt;br&gt;CSS HANDS ON
&lt;br&gt;New York City, October 10-13, 2006.
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Michael Dinowitz [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5465799&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdinowit@...&lt;/a&gt;] 
&lt;br&gt;Sent: Sunday, July 23, 2006 8:55 PM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: quote inside or outside anchor
&lt;br&gt;&lt;br&gt;Lets say I have a piece of text that is both a quote and an anchor using the
&lt;br&gt;Q and A tags. Should the anchor go inside the Q or should the Q go inside
&lt;br&gt;the anchor? It's a strange and simple question that might just be style, but
&lt;br&gt;it's kind of important for a piece of a redesign in CSS.
&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3029&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3029&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/quote-inside-or-outside-anchor-tp5460675p5465799.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5461445</id>
	<title>Re: quote inside or outside anchor</title>
	<published>2006-07-23T21:20:33Z</published>
	<updated>2006-07-23T21:20:33Z</updated>
	<author>
		<name>James Holmes-3</name>
	</author>
	<content type="html">Since Q and A are both inline elements, it really is just a choice.
&lt;br&gt;Implement it that way that works best with your chosen CSS.
&lt;br&gt;&lt;br&gt;On 7/24/06, Michael Dinowitz &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=5461445&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;mdinowit@...&lt;/a&gt;&amp;gt; wrote:
&lt;br&gt;&amp;gt; Lets say I have a piece of text that is both a quote and an anchor using the Q and A tags. Should the anchor go inside the Q or should the Q go inside the anchor? It's a strange and simple question that might just be style, but it's kind of important for a piece of a redesign in CSS.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;CFAJAX docs and other useful articles:
&lt;br&gt;&lt;a href=&quot;http://www.bifrost.com.au/blog/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bifrost.com.au/blog/&lt;/a&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3028&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3028&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/quote-inside-or-outside-anchor-tp5460675p5461445.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5460675</id>
	<title>quote inside or outside anchor</title>
	<published>2006-07-23T18:54:32Z</published>
	<updated>2006-07-23T18:54:32Z</updated>
	<author>
		<name>Michael Dinowitz</name>
	</author>
	<content type="html">Lets say I have a piece of text that is both a quote and an anchor using the Q and A tags. Should the anchor go inside the Q or should the Q go inside the anchor? It's a strange and simple question that might just be style, but it's kind of important for a piece of a redesign in CSS.
&lt;br&gt;Thanks
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3027&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3027&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/quote-inside-or-outside-anchor-tp5460675p5460675.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5424054</id>
	<title>CSS Class in NYC!</title>
	<published>2006-07-20T14:34:23Z</published>
	<updated>2006-07-20T14:34:23Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Registration is now open for my 4 day, Hands On CSS Class October 10-13,
&lt;br&gt;2006 in New York, NY (midtown). Currently there are only 11 seats open, so
&lt;br&gt;register soon to be guaranteed a place.
&lt;br&gt;&lt;br&gt;The Hands on Cascading Style Sheets class is an intensive 4 day workshop
&lt;br&gt;that is aimed at both the beginner and advanced CSS user. For beginners, the
&lt;br&gt;class starts with the basics such as HTML and CSS values and works up to
&lt;br&gt;positioning and table less layouts. Advanced CSS users, will find plenty to
&lt;br&gt;interest them in the first few days as I take them through the proper use of
&lt;br&gt;CSS selectors, quirks vs. standards mode and a through grounding in web
&lt;br&gt;typography. From there, they learn about the box model, which leads them
&lt;br&gt;into positioning and layouts.
&lt;br&gt;&lt;br&gt;Check out the syllabus at &lt;a href=&quot;http://tinyurl.com/fsv3v&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://tinyurl.com/fsv3v&lt;/a&gt;&lt;br&gt;&lt;br&gt;I plan to run a DC class in February of next year. But thought I would post
&lt;br&gt;this here in case anyone is interested in traveling up to New York for the
&lt;br&gt;class, or if you know of someone in the New York area that you think would
&lt;br&gt;be interested, please feel free to forward.
&lt;br&gt;&lt;br&gt;I also run on-site classes in Accessibility and Cascading Style Sheets. &amp;nbsp;If
&lt;br&gt;you are interested in having a class at your company, please contact me.
&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility 
&lt;br&gt;&lt;br&gt;CSS HANDS ON
&lt;br&gt;New York City, October 10-13, 2006.
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com/index.cfm?fuseaction=training.syllabus_display&amp;id=1&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Introducing the Fusion Authority Quarterly Update. 80 pages of hard-hitting,
&lt;br&gt;up-to-date ColdFusion information by your peers, delivered to your door four times a year.
&lt;br&gt;&lt;a href=&quot;http://www.fusionauthority.com/quarterly&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.fusionauthority.com/quarterly&lt;/a&gt;&lt;br&gt;&lt;br&gt;Archive: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3025&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/message.cfm/forumid:41/messageid:3025&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/CSS-Class-in-NYC%21-tp5424054p5424054.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-5016632</id>
	<title>Matching the text in this image.</title>
	<published>2006-06-23T12:11:33Z</published>
	<updated>2006-06-23T12:11:33Z</updated>
	<author>
		<name>Ian Skinner</name>
	</author>
	<content type="html">&lt;a href=&quot;http://www.bloodsource.org/images/AboutUs/ServicesPrograms/marrow_registry_image_1.gif&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.bloodsource.org/images/AboutUs/ServicesPrograms/marrow_registry_image_1.gif&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;Can anybody help me match the characteristics of the text in this image using CSS? &amp;nbsp;I thing I can get everything except the weight. &amp;nbsp;In the original image work file (PSD) the text is &amp;quot;Strong Anti-Alias&amp;quot; which gives it a bit of extra weight, but not a full bold.
&lt;br&gt;&lt;br&gt;The other characteristics are Arial 11pt #163C63 136.3% line height and 2px|pt kerning.
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any
&lt;br&gt;attachments is for the sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged
&lt;br&gt;information. Any unauthorized review, use, disclosure or
&lt;br&gt;distribution is prohibited. If you are not the
&lt;br&gt;intended recipient, please contact the sender and
&lt;br&gt;delete any copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2846&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2846&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Matching-the-text-in-this-image.-tp5016632p5016632.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4758341</id>
	<title>Re: position:fixed, bottom:0px broken in IE6?</title>
	<published>2006-06-07T13:20:01Z</published>
	<updated>2006-06-07T13:20:01Z</updated>
	<author>
		<name>Damien McKenna-4</name>
	</author>
	<content type="html">Knowing that it was the position:fixed part causing the problem, I &amp;nbsp;
&lt;br&gt;got it working beautifully using:
&lt;br&gt;&lt;a href=&quot;http://www.doxdesk.com/software/js/fixed.html&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.doxdesk.com/software/js/fixed.html&lt;/a&gt;&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Damien McKenna - Web Developer - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4758341&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmckenna@...&lt;/a&gt;
&lt;br&gt;The Limu Company - &lt;a href=&quot;http://www.thelimucompany.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thelimucompany.com/&lt;/a&gt;&amp;nbsp;- 407-804-1014
&lt;br&gt;#include &amp;lt;stdjoke.h&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2654&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2654&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/position%3Afixed%2C-bottom%3A0px-broken-in-IE6--tp4757519p4758341.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4758136</id>
	<title>Re: position:fixed, bottom:0px broken in IE6?</title>
	<published>2006-06-07T13:08:55Z</published>
	<updated>2006-06-07T13:08:55Z</updated>
	<author>
		<name>Damien McKenna-4</name>
	</author>
	<content type="html">On Jun 7, 2006, at 2:51 PM, Sandra Clark wrote:
&lt;br&gt;&amp;gt; Position:fixed does not work in IE6. It is one of the items that &amp;nbsp;
&lt;br&gt;&amp;gt; has been
&lt;br&gt;&amp;gt; added to IE7 (not that it helps you right now). &amp;nbsp;There are no &amp;nbsp;
&lt;br&gt;&amp;gt; workarounds
&lt;br&gt;&amp;gt; for it.
&lt;br&gt;&lt;br&gt;Well don't that just suck. &amp;nbsp;Any ideas on alternative techniques to &amp;nbsp;
&lt;br&gt;reach the same conclusion - Javascript, et al? &amp;nbsp;Thanks.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Damien McKenna - Web Developer - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4758136&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmckenna@...&lt;/a&gt;
&lt;br&gt;The Limu Company - &lt;a href=&quot;http://www.thelimucompany.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thelimucompany.com/&lt;/a&gt;&amp;nbsp;- 407-804-1014
&lt;br&gt;#include &amp;lt;stdjoke.h&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2653&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2653&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/position%3Afixed%2C-bottom%3A0px-broken-in-IE6--tp4757519p4758136.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4758048</id>
	<title>Re: position:fixed, bottom:0px broken in IE6?</title>
	<published>2006-06-07T13:05:06Z</published>
	<updated>2006-06-07T13:05:06Z</updated>
	<author>
		<name>Zaphod Beeblebrox-3</name>
	</author>
	<content type="html">well, IE7 from dean edwards will make IE6 support it. &amp;nbsp;Sometimes
&lt;br&gt;though, his program can cause more problems than it fixes.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://dean.edwards.name/IE7/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://dean.edwards.name/IE7/&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;On 6/7/06, Sandra Clark &amp;lt;&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4758048&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;sllists@...&lt;/a&gt;&amp;gt; wrote:
&lt;div class='shrinkable-quote'&gt;&lt;br&gt;&amp;gt; Position:fixed does not work in IE6. It is one of the items that has been
&lt;br&gt;&amp;gt; added to IE7 (not that it helps you right now). &amp;nbsp;There are no workarounds
&lt;br&gt;&amp;gt; for it.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Sandra Clark
&lt;br&gt;&amp;gt; ==============================
&lt;br&gt;&amp;gt; &lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;&amp;gt; Training in Cascading Style Sheets and Accessibility
&lt;br&gt;&amp;gt; -----Original Message-----
&lt;br&gt;&amp;gt; From: Damien McKenna [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4758048&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmckenna@...&lt;/a&gt;]
&lt;br&gt;&amp;gt; Sent: Wednesday, June 07, 2006 2:40 PM
&lt;br&gt;&amp;gt; To: CSS
&lt;br&gt;&amp;gt; Subject: position:fixed, bottom:0px broken in IE6?
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; I'm trying to do a static footer (id=&amp;quot;total&amp;quot;) in my web page that should be
&lt;br&gt;&amp;gt; on the very bottom of the screen with the rest of the content scrolling
&lt;br&gt;&amp;gt; above it. &amp;nbsp;Right now it works just great in Firefox
&lt;br&gt;&amp;gt; 1.5 and Safari, but IE6 only displays it at the bottom of the other content.
&lt;br&gt;&amp;gt; Any ideas on what I might need to do to get it working? &amp;nbsp;My CSS code is as
&lt;br&gt;&amp;gt; follows:
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; body {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 0;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 0;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /* the static footer */
&lt;br&gt;&amp;gt; #total {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: fixed;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: 0px;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bottom: 0px;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 100%;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 3px 0px 3px 0px;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: 25px;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: #E2ECC6;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-top: 1px solid #7B9632;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; font-size: 20px;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; text-align: center;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; /* this contains the rest of the page */ #container {
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: relative;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 770px;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-left: 1px solid black;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-right: 1px solid black;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-bottom: 1px solid black;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 0 auto;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 5px;
&lt;br&gt;&amp;gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: white;
&lt;br&gt;&amp;gt; }
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; Any ideas folks? &amp;nbsp;Thanks.
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; --
&lt;br&gt;&amp;gt; Damien McKenna - Web Developer - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4758048&amp;i=2&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmckenna@...&lt;/a&gt; The Limu
&lt;br&gt;&amp;gt; Company - &lt;a href=&quot;http://www.thelimucompany.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thelimucompany.com/&lt;/a&gt;&amp;nbsp;- 407-804-1014 #include &amp;lt;stdjoke.h&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt;
&lt;br&gt;&amp;gt; 
&lt;/div&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2652&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2652&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/position%3Afixed%2C-bottom%3A0px-broken-in-IE6--tp4757519p4758048.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4757788</id>
	<title>RE: position:fixed, bottom:0px broken in IE6?</title>
	<published>2006-06-07T12:51:20Z</published>
	<updated>2006-06-07T12:51:20Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Position:fixed does not work in IE6. It is one of the items that has been
&lt;br&gt;added to IE7 (not that it helps you right now). &amp;nbsp;There are no workarounds
&lt;br&gt;for it. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility 
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Damien McKenna [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4757788&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmckenna@...&lt;/a&gt;] 
&lt;br&gt;Sent: Wednesday, June 07, 2006 2:40 PM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: position:fixed, bottom:0px broken in IE6?
&lt;br&gt;&lt;br&gt;I'm trying to do a static footer (id=&amp;quot;total&amp;quot;) in my web page that should be
&lt;br&gt;on the very bottom of the screen with the rest of the content scrolling
&lt;br&gt;above it. &amp;nbsp;Right now it works just great in Firefox
&lt;br&gt;1.5 and Safari, but IE6 only displays it at the bottom of the other content.
&lt;br&gt;Any ideas on what I might need to do to get it working? &amp;nbsp;My CSS code is as
&lt;br&gt;follows:
&lt;br&gt;&lt;br&gt;body {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 0;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;/* the static footer */
&lt;br&gt;#total {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: fixed;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bottom: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 100%;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 3px 0px 3px 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: 25px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: #E2ECC6;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-top: 1px solid #7B9632;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; font-size: 20px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; text-align: center;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;/* this contains the rest of the page */ #container {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: relative;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 770px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-left: 1px solid black;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-right: 1px solid black;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-bottom: 1px solid black;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 0 auto;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 5px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: white;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Any ideas folks? &amp;nbsp;Thanks.
&lt;br&gt;&lt;br&gt;--
&lt;br&gt;Damien McKenna - Web Developer - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4757788&amp;i=1&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmckenna@...&lt;/a&gt; The Limu
&lt;br&gt;Company - &lt;a href=&quot;http://www.thelimucompany.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thelimucompany.com/&lt;/a&gt;&amp;nbsp;- 407-804-1014 #include &amp;lt;stdjoke.h&amp;gt;
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2651&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2651&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/position%3Afixed%2C-bottom%3A0px-broken-in-IE6--tp4757519p4757788.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4757519</id>
	<title>position:fixed, bottom:0px broken in IE6?</title>
	<published>2006-06-07T12:40:26Z</published>
	<updated>2006-06-07T12:40:26Z</updated>
	<author>
		<name>Damien McKenna-4</name>
	</author>
	<content type="html">I'm trying to do a static footer (id=&amp;quot;total&amp;quot;) in my web page that &amp;nbsp;
&lt;br&gt;should be on the very bottom of the screen with the rest of the &amp;nbsp;
&lt;br&gt;content scrolling above it. &amp;nbsp;Right now it works just great in Firefox &amp;nbsp;
&lt;br&gt;1.5 and Safari, but IE6 only displays it at the bottom of the other &amp;nbsp;
&lt;br&gt;content. &amp;nbsp;Any ideas on what I might need to do to get it working? &amp;nbsp;My &amp;nbsp;
&lt;br&gt;CSS code is as follows:
&lt;br&gt;&lt;br&gt;body {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 0;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 0;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;/* the static footer */
&lt;br&gt;#total {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: fixed;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; left: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; bottom: 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 100%;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 3px 0px 3px 0px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; height: 25px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: #E2ECC6;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-top: 1px solid #7B9632;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; font-size: 20px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; text-align: center;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;/* this contains the rest of the page */
&lt;br&gt;#container {
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; position: relative;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; width: 770px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-left: 1px solid black;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-right: 1px solid black;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; border-bottom: 1px solid black;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; margin: 0 auto;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; padding: 5px;
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; background-color: white;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;Any ideas folks? &amp;nbsp;Thanks.
&lt;br&gt;&lt;br&gt;-- 
&lt;br&gt;Damien McKenna - Web Developer - &lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4757519&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;dmckenna@...&lt;/a&gt;
&lt;br&gt;The Limu Company - &lt;a href=&quot;http://www.thelimucompany.com/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.thelimucompany.com/&lt;/a&gt;&amp;nbsp;- 407-804-1014
&lt;br&gt;#include &amp;lt;stdjoke.h&amp;gt;
&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2650&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2650&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/position%3Afixed%2C-bottom%3A0px-broken-in-IE6--tp4757519p4757519.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4583483</id>
	<title>RE: Vertical alignment weirdness?</title>
	<published>2006-05-26T14:34:14Z</published>
	<updated>2006-05-26T14:34:14Z</updated>
	<author>
		<name>Ian Skinner</name>
	</author>
	<content type="html">Doctype is used by browsers to determine rendering mode. &amp;nbsp;No Doctype or Doctypes other than HTML 4.01 Strict, HTML 4.01 Transitional, xHTML 1.0 Transitional or xHTML 1.0 Strict will trigger quirks mode in some browsers. The above referenced doctypes trigger standards mode.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://hsivonen.iki.fi/doctype/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hsivonen.iki.fi/doctype/&lt;/a&gt;&lt;br&gt;&lt;br&gt;I ran across that link in my googling on this problem, but it did not answer my question as best as I can tell.
&lt;br&gt;&lt;br&gt;I am using doctypes in all my documents. &amp;nbsp;But I am getting different behavior when I use transitional doctypes versus strict doctypes and I do not understand why.
&lt;br&gt;&lt;br&gt;These doctypes provide the behavior I expect, where the generated images line up with the bottom of the inline box.
&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/html4/loose.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/html4/loose.dtd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Transitional//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;These doctypes do not provide the behavior I expect. &amp;nbsp;The generated images only line up with the base line of the inline box.
&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE HTML PUBLIC &amp;quot;-//W3C//DTD HTML 4.01//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/html4/strict.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/html4/strict.dtd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;&amp;lt;!DOCTYPE html PUBLIC &amp;quot;-//W3C//DTD XHTML 1.0 Strict//EN&amp;quot; &amp;quot;&lt;a href=&quot;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd&lt;/a&gt;&amp;quot;&amp;gt;
&lt;br&gt;&lt;br&gt;I would like to understand this difference if at all possible.
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any
&lt;br&gt;attachments is for the sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged
&lt;br&gt;information. Any unauthorized review, use, disclosure or
&lt;br&gt;distribution is prohibited. If you are not the
&lt;br&gt;intended recipient, please contact the sender and
&lt;br&gt;delete any copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2611&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2611&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vertical-alignment-weirdness--tp4581985p4583483.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4582599</id>
	<title>RE: Vertical alignment weirdness?</title>
	<published>2006-05-26T13:38:09Z</published>
	<updated>2006-05-26T13:38:09Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Doctype is used by browsers to determine rendering mode. &amp;nbsp;No Doctype or
&lt;br&gt;Doctypes other than HTML 4.01 Strict, HTML 4.01 Transitional, xHTML 1.0
&lt;br&gt;Transitional or xHTML 1.0 Strict will trigger quirks mode in some browsers.
&lt;br&gt;The above referenced doctypes trigger standards mode.
&lt;br&gt;&lt;br&gt;&lt;a href=&quot;http://hsivonen.iki.fi/doctype/&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://hsivonen.iki.fi/doctype/&lt;/a&gt;&amp;nbsp;
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility 
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Ian Skinner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4582599&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ian.skinner@...&lt;/a&gt;] 
&lt;br&gt;Sent: Friday, May 26, 2006 2:52 PM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: Vertical alignment weirdness?
&lt;br&gt;&lt;br&gt;Any idea why the doctype would matter concerning the following CSS?
&lt;br&gt;&lt;br&gt;div#sideNav a:before
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; content: url(left_curve.gif);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vertical-align: bottom;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;When used with a HTML transitional doctype it works as expected with the
&lt;br&gt;included image aligned to the bottom of the inline a element.
&lt;br&gt;&lt;br&gt;When used with a XHTML strict doctype it does not line up with the bottom of
&lt;br&gt;the inline a element, but rather only lines up with the baseline.
&lt;br&gt;&lt;br&gt;I have not tried other doctypes yet. &amp;nbsp;This has been tested in Firefox; it
&lt;br&gt;obviously does not apply in IE since IE currently does not know how to
&lt;br&gt;handle generated CSS content.
&lt;br&gt;&lt;br&gt;TIA
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any attachments is for the
&lt;br&gt;sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged information. Any
&lt;br&gt;unauthorized review, use, disclosure or distribution is prohibited. If you
&lt;br&gt;are not the intended recipient, please contact the sender and delete any
&lt;br&gt;copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2610&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2610&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vertical-alignment-weirdness--tp4581985p4582599.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4581984</id>
	<title>Vertical alignment weirdness?</title>
	<published>2006-05-26T12:51:59Z</published>
	<updated>2006-05-26T12:51:59Z</updated>
	<author>
		<name>Ian Skinner</name>
	</author>
	<content type="html">Any idea why the doctype would matter concerning the following CSS?
&lt;br&gt;&lt;br&gt;div#sideNav a:before
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; content: url(left_curve.gif);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vertical-align: bottom;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;I have now tried this with other doctypes, it seems to be a matter of strict vs. transitional. &amp;nbsp;The output displays as I would expect in HTML and XHTML transitional, but does not display as I would expect, with the generated content staying on the baseline, in HTML and XHTML strict.
&lt;br&gt;&lt;br&gt;Is there some deference in the behavior of vertical-align in strict mode?
&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any
&lt;br&gt;attachments is for the sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged
&lt;br&gt;information. Any unauthorized review, use, disclosure or
&lt;br&gt;distribution is prohibited. If you are not the
&lt;br&gt;intended recipient, please contact the sender and
&lt;br&gt;delete any copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2608&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2608&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vertical-alignment-weirdness--tp4581984p4581984.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4581985</id>
	<title>Vertical alignment weirdness?</title>
	<published>2006-05-26T12:51:32Z</published>
	<updated>2006-05-26T12:51:32Z</updated>
	<author>
		<name>Ian Skinner</name>
	</author>
	<content type="html">Any idea why the doctype would matter concerning the following CSS?
&lt;br&gt;&lt;br&gt;div#sideNav a:before
&lt;br&gt;{
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; content: url(left_curve.gif);
&lt;br&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; vertical-align: bottom;
&lt;br&gt;}
&lt;br&gt;&lt;br&gt;When used with a HTML transitional doctype it works as expected with the included image aligned to the bottom of the inline a element.
&lt;br&gt;&lt;br&gt;When used with a XHTML strict doctype it does not line up with the bottom of the inline a element, but rather only lines up with the baseline.
&lt;br&gt;&lt;br&gt;I have not tried other doctypes yet. &amp;nbsp;This has been tested in Firefox; it obviously does not apply in IE since IE currently does not know how to handle generated CSS content.
&lt;br&gt;&lt;br&gt;TIA
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any
&lt;br&gt;attachments is for the sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged
&lt;br&gt;information. Any unauthorized review, use, disclosure or
&lt;br&gt;distribution is prohibited. If you are not the
&lt;br&gt;intended recipient, please contact the sender and
&lt;br&gt;delete any copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2609&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2609&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Vertical-alignment-weirdness--tp4581985p4581985.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4565809</id>
	<title>RE: Generated content and width</title>
	<published>2006-05-25T14:37:50Z</published>
	<updated>2006-05-25T14:37:50Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Not one that would be available on all browsers. Frankly since you can't
&lt;br&gt;guarantee what fonts your users have, stick with the common ones. &amp;nbsp;You have
&lt;br&gt;better luck having it display the way you want that way. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility 
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Ian Skinner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4565809&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ian.skinner@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, May 25, 2006 4:21 PM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: RE: Generated content and width
&lt;br&gt;&lt;br&gt;Ahh inline.
&lt;br&gt;&lt;br&gt;Then the answer is &amp;quot;No&amp;quot;. &amp;nbsp;Inline can be given padding, but not width. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;&lt;br&gt;I thought so. &amp;nbsp;Looks like I'm off to a CF solution to make sure the content
&lt;br&gt;is always the same number of characters.
&lt;br&gt;&lt;br&gt;Do you have any recommendations on a good monospace font that looks better
&lt;br&gt;then the standard courier?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any attachments is for the
&lt;br&gt;sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged information. Any
&lt;br&gt;unauthorized review, use, disclosure or distribution is prohibited. If you
&lt;br&gt;are not the intended recipient, please contact the sender and delete any
&lt;br&gt;copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2603&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2603&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generated-content-and-width-tp4563492p4565809.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4565503</id>
	<title>RE: Generated content and width</title>
	<published>2006-05-25T14:20:54Z</published>
	<updated>2006-05-25T14:20:54Z</updated>
	<author>
		<name>Ian Skinner</name>
	</author>
	<content type="html">Ahh inline.
&lt;br&gt;&lt;br&gt;Then the answer is &amp;quot;No&amp;quot;. &amp;nbsp;Inline can be given padding, but not width. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;&lt;br&gt;I thought so. &amp;nbsp;Looks like I'm off to a CF solution to make sure the content is always the same number of characters.
&lt;br&gt;&lt;br&gt;Do you have any recommendations on a good monospace font that looks better then the standard courier?
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any
&lt;br&gt;attachments is for the sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged
&lt;br&gt;information. Any unauthorized review, use, disclosure or
&lt;br&gt;distribution is prohibited. If you are not the
&lt;br&gt;intended recipient, please contact the sender and
&lt;br&gt;delete any copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2602&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2602&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generated-content-and-width-tp4563492p4565503.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4565452</id>
	<title>RE: Generated content and width</title>
	<published>2006-05-25T14:16:44Z</published>
	<updated>2006-05-25T14:16:44Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">Ahh inline.
&lt;br&gt;&lt;br&gt;Then the answer is &amp;quot;No&amp;quot;. &amp;nbsp;Inline can be given padding, but not width. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility 
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Ian Skinner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4565452&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ian.skinner@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, May 25, 2006 4:03 PM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: RE: Generated content and width
&lt;br&gt;&lt;br&gt;You could try setting min-width: width and max-width to the same thing, but
&lt;br&gt;IE doesn't know what min-width or max-width are (hopefully IE7 will)
&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;&lt;br&gt;Well since IE doesn't know what to do with :before and :after pseudo class
&lt;br&gt;generated content either, I'm not too worried about it. &amp;nbsp;This is just &amp;quot;what
&lt;br&gt;if&amp;quot; type of experimenting.
&lt;br&gt;&lt;br&gt;Would min-width and max-width have any different effect then a basic width
&lt;br&gt;property on an inline element? &amp;nbsp;I thought inline elements could not be given
&lt;br&gt;dimensions? &amp;nbsp;That seems to be my main problem. &amp;nbsp;I need the elements to be
&lt;br&gt;inline so the generated content is on the same line, but inline elements can
&lt;br&gt;not be given dimension.
&lt;br&gt;&lt;br&gt;Is this true, and if so, is there any kind of work around?
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any attachments is for the
&lt;br&gt;sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged information. Any
&lt;br&gt;unauthorized review, use, disclosure or distribution is prohibited. If you
&lt;br&gt;are not the intended recipient, please contact the sender and delete any
&lt;br&gt;copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2601&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2601&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generated-content-and-width-tp4563492p4565452.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4565249</id>
	<title>RE: Generated content and width</title>
	<published>2006-05-25T14:02:54Z</published>
	<updated>2006-05-25T14:02:54Z</updated>
	<author>
		<name>Ian Skinner</name>
	</author>
	<content type="html">You could try setting min-width: width and max-width to the same thing, but IE doesn't know what min-width or max-width are (hopefully IE7 will)
&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;&lt;br&gt;Well since IE doesn't know what to do with :before and :after pseudo class generated content either, I'm not too worried about it. &amp;nbsp;This is just &amp;quot;what if&amp;quot; type of experimenting.
&lt;br&gt;&lt;br&gt;Would min-width and max-width have any different effect then a basic width property on an inline element? &amp;nbsp;I thought inline elements could not be given dimensions? &amp;nbsp;That seems to be my main problem. &amp;nbsp;I need the elements to be inline so the generated content is on the same line, but inline elements can not be given dimension.
&lt;br&gt;&lt;br&gt;Is this true, and if so, is there any kind of work around?
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any
&lt;br&gt;attachments is for the sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged
&lt;br&gt;information. Any unauthorized review, use, disclosure or
&lt;br&gt;distribution is prohibited. If you are not the
&lt;br&gt;intended recipient, please contact the sender and
&lt;br&gt;delete any copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2600&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2600&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generated-content-and-width-tp4563492p4565249.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4565006</id>
	<title>RE: Generated content and width</title>
	<published>2006-05-25T13:48:54Z</published>
	<updated>2006-05-25T13:48:54Z</updated>
	<author>
		<name>Sandra Clark</name>
	</author>
	<content type="html">You could try setting min-width: width and max-width to the same thing, but
&lt;br&gt;IE doesn't know what min-width or max-width are (hopefully IE7 will)
&lt;br&gt;&lt;br&gt;&lt;br&gt;Sandra Clark
&lt;br&gt;==============================
&lt;br&gt;&lt;a href=&quot;http://www.shayna.com&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.shayna.com&lt;/a&gt;&lt;br&gt;Training in Cascading Style Sheets and Accessibility 
&lt;br&gt;-----Original Message-----
&lt;br&gt;From: Ian Skinner [mailto:&lt;a href=&quot;http://old.nabble.com/user/SendEmail.jtp?type=post&amp;post=4565006&amp;i=0&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;ian.skinner@...&lt;/a&gt;] 
&lt;br&gt;Sent: Thursday, May 25, 2006 2:02 PM
&lt;br&gt;To: CSS
&lt;br&gt;Subject: Generated content and width
&lt;br&gt;&lt;br&gt;I'm pretty sure the answer is no, but before I give up I thought I would ask
&lt;br&gt;HOF.
&lt;br&gt;&lt;br&gt;Is there any possible way to use the generated content pseudo classes
&lt;br&gt;:before and :after on a series of inline elements at the same time providing
&lt;br&gt;a consistent, defined width for these elements regardless of their content?
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any attachments is for the
&lt;br&gt;sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged information. Any
&lt;br&gt;unauthorized review, use, disclosure or distribution is prohibited. If you
&lt;br&gt;are not the intended recipient, please contact the sender and delete any
&lt;br&gt;copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2599&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2599&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generated-content-and-width-tp4563492p4565006.html" />
</entry>

<entry>
	<id>tag:old.nabble.com,2006:post-4563492</id>
	<title>Generated content and width</title>
	<published>2006-05-25T12:02:12Z</published>
	<updated>2006-05-25T12:02:12Z</updated>
	<author>
		<name>Ian Skinner</name>
	</author>
	<content type="html">I'm pretty sure the answer is no, but before I give up I thought I would ask HOF.
&lt;br&gt;&lt;br&gt;Is there any possible way to use the generated content pseudo classes :before and :after on a series of inline elements at the same time providing a consistent, defined width for these elements regardless of their content?
&lt;br&gt;&lt;br&gt;&lt;br&gt;--------------
&lt;br&gt;Ian Skinner
&lt;br&gt;Web Programmer
&lt;br&gt;BloodSource
&lt;br&gt;www.BloodSource.org
&lt;br&gt;Sacramento, CA
&lt;br&gt;&lt;br&gt;---------
&lt;br&gt;| 1 | &amp;nbsp; |
&lt;br&gt;--------- &amp;nbsp;Binary Soduko
&lt;br&gt;| &amp;nbsp; | &amp;nbsp; |
&lt;br&gt;---------
&lt;br&gt;&amp;nbsp;
&lt;br&gt;&amp;quot;C code. C code run. Run code run. Please!&amp;quot;
&lt;br&gt;- Cynthia Dunning
&lt;br&gt;&lt;br&gt;Confidentiality Notice: &amp;nbsp;This message including any
&lt;br&gt;attachments is for the sole use of the intended
&lt;br&gt;recipient(s) and may contain confidential and privileged
&lt;br&gt;information. Any unauthorized review, use, disclosure or
&lt;br&gt;distribution is prohibited. If you are not the
&lt;br&gt;intended recipient, please contact the sender and
&lt;br&gt;delete any copies of this message. 
&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
&lt;br&gt;Message: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=i:41:2598&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=i:41:2598&lt;/a&gt;&lt;br&gt;Archives: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/threads.cfm/41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/threads.cfm/41&lt;/a&gt;&lt;br&gt;Subscription: &lt;a href=&quot;http://www.houseoffusion.com/lists.cfm/link=s:41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/lists.cfm/link=s:41&lt;/a&gt;&lt;br&gt;Unsubscribe: &lt;a href=&quot;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=17837.14401.41&lt;/a&gt;&lt;br&gt;Donations &amp; Support: &lt;a href=&quot;http://www.houseoffusion.com/tiny.cfm/54&quot; target=&quot;_top&quot; rel=&quot;nofollow&quot;&gt;http://www.houseoffusion.com/tiny.cfm/54&lt;/a&gt;&lt;br&gt;</content>
	<link rel="alternate" type="text/html" href="http://old.nabble.com/Generated-content-and-width-tp4563492p4563492.html" />
</entry>

</feed>
