<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Advanced CSS Design Resources - last-child.com &#187; Definition List</title>
	<atom:link href="http://www.last-child.com/category/html-elements/definition-list/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.last-child.com</link>
	<description>CSS Toys for Professional Web Developers</description>
	<lastBuildDate>Mon, 19 Dec 2011 18:30:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Image sprites &#8211; flexible and accessible packages</title>
		<link>http://www.last-child.com/image-sprites-flexible-and-accessible-packages/</link>
		<comments>http://www.last-child.com/image-sprites-flexible-and-accessible-packages/#comments</comments>
		<pubDate>Tue, 17 Oct 2006 20:11:11 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[background]]></category>
		<category><![CDATA[Class]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Definition List]]></category>
		<category><![CDATA[HTML Elements]]></category>
		<category><![CDATA[Image Replacement]]></category>
		<category><![CDATA[Image Sprites]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[Span]]></category>
		<category><![CDATA[Yahoo!]]></category>

		<guid isPermaLink="false">http://www.last-child.com/image-sprites-flexible-and-accessible-packages/</guid>
		<description><![CDATA[User generated ratings and reviews are an important part of all Yahoo! sites. You can find them on just about every page of Yahoo! Tech.&#160; It was important for us to develop a ratings presentation device that was easy to code, accessible, flexible, and as light-weight as possible. Our final design uses a combination of [...]]]></description>
			<content:encoded><![CDATA[<p> User  generated ratings and reviews are an important part of all Yahoo! sites. You can find them on  just about every page of <a href="http://tech.yahoo.com">Yahoo! Tech</a>.&nbsp; It  was important for us to develop a ratings presentation device that was easy to code,  accessible, flexible, and as light-weight as possible. Our final design  uses a combination of image sprites and negative text-indent to satisfy these requirements.</p>
<p>
Product ratings are represented with 1 to 5 stars. Other sites  have used inline images; repeating a solid or empty version for each of the  five stars. <img src="http://us.i1.yimg.com/us.yimg.com/i/us/sh/karma/ar_star_4half.gif" alt="stars image from Yahoo! Shopping" width="93" height="16" />Other sites, such as Yahoo! Shopping, have used a single inline image representing the number of  stars.&nbsp;  At best, the image will have an alt attribute that descibes the number of stars. However, the content is locked inside the image. This is an easy approach for  coding but isn&rsquo;t the most accessible approach. </p>
<h3>Yahoo! Tech uses the <strong>content first</strong> approach to design</h3>
<p>
Content-first design improves accessibility. This approach places the relevant content in semantic markup. It then uses CSS to transform that content into the visual design. Here is a sample rating from Yahoo! Tech: <strong>Overall:4/5, Quality:5/5, Support: 3/5</strong>. Our CSS transform that simple text into a series of stars and accompanying text. User testing with a screen-reader user led us to remove visual descriptions from the content, i.e.&quot;stars&quot; or &quot;bars&quot;. </p>
<h3>With the content in the page, it was time to look at the visual design. </h3>
<p>Ratings are presented in either an unordered list or definition list. We need to place descriptive text in front of the stars and want the stars to be aligned with each other. These considerations lead to using spans with a combination of CSS rules to hide the text, insert a background image, and absolutely position the ratings to the right side of the list item.  <strong>Let&rsquo;s look at the code.</strong></p>
<h4>The HTML &#8211; span </h4>
<p>
To use  a background image for the stars, we  need a container that can be manipulated with CSS and not include presentational behaviors  of its own. This is why we  use the span, a generic inline container.  We could  use a strong or em, but feel the span offers the best  versatility. You never know when the graphic designer will ask for some text to be bolded or emphasized in the same list item. </p>
<h4>Sample code for a rating</h4>
<p><code lang="HTML"></p>
<ul class="ratingslist">
<li class="stars4">Overall: <span title="Yahoo! users gave the Apple iPod 4 out of 5 stars for Overall Quality">4/5</span></li>
</ul>
<p></code></p>
<p>
The span&rsquo;s title will generate a tooltip when the user places their mouse over the rating (not Internet Explorer). Screen readers&#8217; default settings ignore title attributes on non-form items.</p>
<h4>The CSS</h4>
<p>
Spans are inline elements.&nbsp;  To display background images, we need to make them display block, define  a height, width, and move the text off the screen. To keep them inline with the  text, we are also positioning them absolutely. We could  position them relatively or floated the spans. Position absolute works the best for our pages.The parent list item is positioned  relatively to give the span a contextual anchor. Negative text-indent will hide the rating text.</p>
<p><code lang="CSS"><br />
.ratingslist {list-style-type:none;}<br />
.ratingslist li {position:relative;  padding:3px 5px; }<br />
.ratingslist li span {text-indent:-1000em; width:66px;  display:block; position:absolute;  top:5px; right:20px;}<br />
</code></p>
<h4>Image sprites display the desired number of stars</h4>
<p>
The list item is given a class with a number at the end  (stars8). This will display an image with four out of five red stars. We are using a scale of 0 to 10 to accomodate half stars. To  display other rating variations, we change the modifier, i.e. prostars4,  retstars4, bars4, bigstars4, etc&hellip;</p>
<p>
To simplify the maintenance of the site and  reduce server  requests; Yahoo! Tech also uses image sprites. Sprites are <a href="http://l.yimg.com/tech.yahoo.com/images/20061004202215/bg-ratings.png">single images that include multiple icons</a> with a consistent spacing between them. Use background positioning to display the desired chunk of the image. Each sprite represents the  possible color variations used on the site: red, blue, and green. Minimizing the  color palettes reduces the final image size.  For more  information on sprites, read <a href="http://www.alistapart.com/articles/sprites/">CSS Sprites: Image Slicing&rsquo;s Kiss of Death</a> by Dave Shea. As a further enhancement, alpha transparent png images are  used for most browsers and index-transparent gifs are presented in the Internet  Explorer 6  style sheets.&nbsp;</p>
<p>
Background images are positioned with the set of numbers after &quot;no repeat.&quot; The horizontal positioning is first. Our sprite is vertical, so we are leaving it alone, hence the 0 value. The vertical positiong comes next. If we want to display 2 out of 5 stars, we need to shift the background down to that part of the image (-530px). Here is the CSS for presenting the specific star variant.</p>
<p><code lang="CSS"><br />
/* Ratings images<br />
  ======================================= */<br />
  .stars0 span {background:url(/images/bg-ratings.png)  no-repeat 0 -650px;}<br />
  .stars1 span {background:url(/images/bg-ratings.png)  no-repeat 0 -620px;}<br />
  .stars2 span {background:url(/images/bg-ratings.png)  no-repeat 0 -590px;}<br />
  .stars3 span {background:url(/images/bg-ratings.png)  no-repeat 0 -560px;}<br />
  .stars4 span {background:url(/images/bg-ratings.png)  no-repeat 0 -530px;}<br />
  .stars5 span {background:url(/images/bg-ratings.png)  no-repeat 0 -500px;}<br />
  &hellip; (repeated for each variation of the stars and bars)<br />
</code></p>
<p>
This approach has allowed the Yahoo! Tech engineers  to maintain a consistent presentation  with minimal  markup. For pages that need special tweaks we can easily adjust the positioning  by using descending selectors: </p>
<p><code lang="CSS"><br />
#mytech .ratingslist li span { right:5px;}<br />
</code></p>
<h4>Caveats</h4>
<p>
We&rsquo;ve only found a few small issues with this approach. </p>
<ul >
<li>You cannot count on background images being displayed on the printed page. Our print style sheet removes the text-indent and background images to display &ldquo;Overall: 4/5&rdquo;. </li>
<li>When       someone includes more than 4 products in the comparison table, the text of some rating parameters will begin to overlap the stars. If they were inline images or if we floated the spans, they may drop to the next line. </li>
</ul>
<p>
Yahoo Tech! ratings are another example of creating  accessible and visually dynamic pages by considering the underlying content  structure before attacking the styles. Users of all abilities are presented  with solid information. That&rsquo;s how you can deliver a 5 star page every time.</p>
<p>Related Information</p>
<ul>
<li> <a href="http://www.alistapart.com/articles/sprites/">CSS Sprites: Image Slicing&rsquo;s Kiss of Death</a> by Dave Shea.</li>
<li><a href="/make-flash-accessible-to-screen-readers-in-transparent-window-mode/">Making Flash Accessible to Screen Readers</a></li>
<li><a href="http://rollyo.com/search.html?q=sprites&#038;uid=0&#038;sid=4886">Standardista Search: Sprites</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/image-sprites-flexible-and-accessible-packages/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The perfect FAQ page ! &#8211; by Thierry Koblentz</title>
		<link>http://www.last-child.com/the-perfect-faq-page/</link>
		<comments>http://www.last-child.com/the-perfect-faq-page/#comments</comments>
		<pubDate>Mon, 27 Feb 2006 00:37:39 +0000</pubDate>
		<dc:creator>Ted</dc:creator>
				<category><![CDATA[:block]]></category>
		<category><![CDATA[:none]]></category>
		<category><![CDATA[Accessibility]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Definition List]]></category>
		<category><![CDATA[display]]></category>
		<category><![CDATA[JavaScript]]></category>

		<guid isPermaLink="false">http://www.last-child.com/the-perfect-faq-page/</guid>
		<description><![CDATA[&#8211; This was originally published on www.tjkdesign.com. Visit the original site for updated code and to see a working copy of the script. Thierry has created a Dreamweaver plugin to make this super-easy to add to your site! This is about using a Definition List and the DOM to create a nice FAQ page where [...]]]></description>
			<content:encoded><![CDATA[<p>&#8211; This was originally published on <a href="http://www.tjkdesign.com/articles/toggle_elements.asp">www.tjkdesign.com</a>. Visit the original site for updated code and to see a working copy of the script. Thierry has created a <a href="http://www.tjkdesign.com/articles/TJK_ToggleDL/extension/easyFAQ.asp">Dreamweaver plugin</a> to make this super-easy to add to your site!</p>
<p>This  is about using a <em>Definition List</em> and the <acronym title="Document Object Model">DOM</acronym> to create a nice <acronym title="Frequently Asked Questions">FAQ</acronym> page where clicking on the <acronym title="Definition Term">DT</acronym>s (the questions) &#8220;toggles&#8221;  the associated <acronym title="Definition Description">DD</acronym>s (the answers).</p>
<p class="smallText">Note: If you&#8217;re already using this solution, please check your version number (this is <span class="red">version 1.5.4</span>). Before you download the newest version I suggest to go through the entire article again (since a few things have changed).</p>
<p>This is what it does:</p>
<p><a id="TJK_ToggleON">Open All</a><a id="TJK_ToggleOFF">Close All</a></p>
<dl id="TJK_DL">
<dt>Question 1?</dt>
<dd>The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don&#8217;t have sufficient view of the overall goals.</dd>
<dt>Question 2?</dt>
<dd>To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don&#8217;t have sufficient view of the overall goals. To ensure that non-operating cash outflows are assessed.</dd>
<dt>Question 3?</dt>
<dd>The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don&#8217;t have sufficient view of the overall goals. To ensure that non-operating cash outflows are assessed. The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach.</dd>
<dt>Question 4?</dt>
<dd>The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To ensure that non-operating cash outflows are assessed.</dd>
<dt>Question 5?</dt>
<dd>The vitality of conceptual synergies is of supreme importance exploiting the productive lifecycle working through a top-down, bottom-up approach. To focus on improvement, not cost, from binary cause and effect to complex patterns, while those at the coal face don&#8217;t have sufficient view of the overall goals. To ensure that non-operating cash outflows are assessed.
</dd>
</dl>
<p>The main advantages of the basic technique (related to the DL):</p>
<ul>
<li>It uses semantic markup.</li>
<li>It degrades nicely (hidden elements are visible in script-disabled <acronym title="User Agent">UA</acronym>s).</li>
<li><acronym title="Definition Term">DT</acronym>s do not appear  as links without script support.</li>
<li>It does not use inline event attribute (onclick()).</li>
<li>It does not require A elements in the markup.</li>
<li>It is screen-readers &#8220;friendly&#8221;.</li>
<li>It is keyboard &#8220;friendly&#8221;.</li>
<li>It is IE Mac compatible.</li>
<li>It relies on <em>one single</em> hook.</li>
<li>It allows the author to add/move/delete DT/DD pairs easily (there is no variable in the script to edit and there are no class or ID to include nor change).</li>
<li>It is &#8220;powered&#8221; by a very light script (3Kb).</li>
</ul>
<p>About the &#8220;Show All/Hide All&#8221; &#8220;links&#8221;:</p>
<ul>
<li>they  let the user expand all answers at once, so it is possible to <em>search</em> the document.</li>
<li>they are hidden  from Javascript-challenged browsers.</li>
<li>they can  be &#8220;Named Anchors&#8221;, images or SPANs (actually they can be any inline elements or any other elements styled as inline).</li>
</ul>
<p>This is more or less a plug-and-play solution (script and stylesheets are at the <a title="Content of the script and the 2 stylesheets" href="#zStuff">bottom of this page</a>).<br />
You&#8217;ll need to:</p>
<ol>
<li>Create a <a title="Definition lists: the DL, DT, and DD elements" href="http://www.w3.org/TR/REC-html40/struct/lists.html#h-10.3">Definition List</a> (do not use more than one <acronym title="Definition Description">DD</acronym> per <acronym title="Defintion Term">DT</acronym>.); the markup for the one above looks like this:
<div class="codewrap">
<code lang="HTML"></p>
<dl>
<dt>Question 1</dt>
<dd>The vitality of conceptual synergies...</dd>
<dt>Question 2</dt>
<dd>To focus on improvement, not cost, ...</dd>
<dt>Question 3</dt>
<dd>The vitality of conceptual synergies...</dd>
<dt>Question 4</dt>
<dd>The vitality of conceptual synergies...</dd>
</dl>
<p></code>
</div>
</li>
<li>Assign a <em>specific</em> ID to your <acronym title="Definition List">DL</acronym>:<br />
<code lang="HTML"><br />
&lt;dl id="TJK_DL" /><br />
</code>
</li>
<li>Download this <a title="This file contains the script, 2 stylesheets and 3 GIF files." href="http://www.tjkdesign.com/TJK_ToggleDL/TJK_ToggleDL.zip">ZIP File</a> (3Kb) and unzip its content in  the <em>same</em> directory as your <acronym title="Frequently Asked Questions">FAQ</acronym> page.</li>
<li>In your <acronym title="Frequently Asked Questions">FAQ</acronym> page, right above the closing headtag cut and paste the following:
<div class="codewrap">
<code>&lt;script type=&quot;text/javascript&quot; src=&quot;TJK_ToggleDL/TJK_ToggleDL.js&quot;&gt;&lt;/script&gt;</code>
</div>
</li>
<li>Call the script, for example using:
<p><code>&lt;body onload=&quot;TJK_ToggleDL()&quot;></code></p>
<p class="smallText">Note: In case you want to add multiple onload handlers to a page, make sure to read <a href="http://simon.incutio.com/archive/2004/05/26/addLoadEvent">executing JavaScript on page load</a>.</p>
</li>
<li>In order to use the &#8220;Show All&#8221; / &#8220;Hide All&#8221; feature, you will need to create 2 named anchors with  specific IDs (TJK_ToggleON and TJK_ToggleOFF). Dreamweaver users can take advantage of the &#8220;Named Anchor&#8221; icon in the toolbar to easily create the required markup. Dreamweaver will plug the  name attribute as well, but that&#8217;s OK, you can either delete it or ignore it.<br />
This is the markup I&#8217;m using in this page:</p>
<p><code>&lt;a id="TJK_ToggleON">Open All</a><&lt;a id="TJK_ToggleOFF">Close All&lt;/a></code></p>
<p class="smallText">Note:  <em>adjacent</em> anchors are  confusing in text-browsers.</p>
<p><img src="http://www.tjkdesign.com//img/important.gif" class="plainimage" alt="important note" />You can also replace these Named Anchors with other inline elements, for example SPAN or IMG (yes, <em>images</em>). Just make sure to set the proper IDs.</li>
<li>Because we want to <em>hide</em> these &#8220;links&#8221; from script-challenged <acronym title="User Agent">UA</acronym>s, you need to include the following rule somewhere inside your stylesheet:
<div class="codewrap">
<pre>#TJK_ToggleON,#TJK_ToggleOFF {display:none}</pre>
</div>
<p class="smallText">Note: You can also use a style element to include this rule in the head of your document (your <acronym title="Frequently Asked Questions">FAQ</acronym> page).</p>
</li>
</ol>
<p>You&#8217;re done!</p>
<p>Feel free to edit the  rules in the <acronym title="Cascading Styles Sheet">CSS</acronym> file to fit your needs.</p>
<p><img src="http://www.tjkdesign.com/img/important.gif" class="plainimage" alt="important note" />Note: in case your questions are more than one line long, you may want to change this: &#8220;background:0 50%&#8221; to this: &#8220;background:0 0&#8243; and add &#8220;display:block&#8221; to the #TJK_DL dt a {} rule (to avoid any &#8220;wrapping&#8221;).</p>
<h2>For the curious</h2>
<h3>TJK_ToggleDL.js</h3>
<div class="codewrap">
<code lang="Javascript"><br />
// Copyright 2006 | Thierry Koblentz - www.TJKDesign.com All Rights reserved<br />
// TJK_ToggleDL() Version 1.5.4 report bugs or errors to thierry@tjkdesign.com<br />
if (document.getElementById &amp;&amp; document.getElementsByTagName){<br />
document.write(&quot;&lt;link href=\&quot;TJK_ToggleDL/TJK_ToggleDL.css\&quot; type=\&quot;text/css\&quot; rel=\&quot;stylesheet\&quot; /&gt;&quot;)<br />
document.write(&quot;&lt;link href=\&quot;TJK_ToggleDL/TJK_ToggleDL_ie5mac.css\&quot; type=\&quot;text/css\&quot; rel=\&quot;stylesheet\&quot; /&gt;&quot;)<br />
}<br />
function TJK_doToggleDL(x){<br />
    var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd');<br />
    var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt');<br />
    zDD[x].className=(zDD[x].className=='hideDD')?'showDD':'hideDD';<br />
    zDT[x].className=(zDT[x].className=='DTplus')?'DTminus':'DTplus';<br />
}<br />
function TJK_ToggleDLopen(){//we open all of them<br />
    var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd');<br />
    var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt');<br />
    for(var i=0;i&lt;zDT.length;i++){<br />
	    zDD[i].className='showDD';<br />
	    zDT[i].className='DTminus';<br />
    }<br />
	return false;<br />
}<br />
function TJK_ToggleDLclose(){//we close all of them<br />
    var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd');<br />
    var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt');<br />
    for(var i=0;i&lt;zDT.length;i++){<br />
	   zDD[i].className='hideDD';<br />
 	   zDT[i].className='DTplus';<br />
    }<br />
	return false;<br />
}<br />
function TJK_ToggleDL(){<br />
    if (document.getElementById &amp;&amp; document.getElementsByTagName){<br />
	    var zDT=document.getElementById('TJK_DL').getElementsByTagName('dt;<br />
	    var zDD=document.getElementById('TJK_DL').getElementsByTagName('dd');<br />
	    var ToggleON = document.getElementById('TJK_ToggleON');<br />
	    var ToggleOFF = document.getElementById('TJK_ToggleOFF');<br />
		    if (ToggleON &amp;&amp; ToggleOFF){<br />
				ToggleON.onclick = TJK_ToggleDLopen;<br />
				ToggleON.title = &quot;Show all answers&quot;;<br />
				ToggleON.href = &quot;#&quot;;<br />
			   	ToggleOFF.onclick = TJK_ToggleDLclose;<br />
 			   	ToggleOFF.title = &quot;Hide all answers&quot;;<br />
				ToggleOFF.href = &quot;#&quot;;<br />
			}<br />
	    for(var i=0;i&lt;zDT.length;i++){<br />
    		var zContent = zDT[i].innerHTML;<br />
		    var zHref = &quot;&lt;a href='#' onclick=\&quot;TJK_doToggleDL(&quot;+i+&quot;);return false\&quot; title='Show/hide the answer'&gt;&quot;;<br />
		    zDT[i].innerHTML = zHref + zContent + &quot;&lt;/a&gt;&quot;;<br />
		    zDD[i].className='hideDD';<br />
		    zDT[i].className='DTplus';<br />
	    }<br />
    }<br />
}<br />
</code>
</div>
<h3>TJK_ToggleDL.css</h3>
<div class="codewrap">
<code lang="CSS"><br />
/*  &quot;Show All&quot; + &quot;Hide All&quot; links */<br />
#TJK_ToggleON,#TJK_ToggleOFF {border:1px solid #333;padding:0 5px;margin-right:5px}<br />
/* zeroing out padding and margin */<br />
#TJK_DL dd,#TJK_DL dt {margin:0;padding:0}<br />
/* margin for the DTs (shorthand) */<br />
#TJK_DL dt {margin:7px 0}<br />
/* image and left padding for DDs */<br />
#TJK_DL dd {background:url(answer.gif) no-repeat;padding-left:55px}<br />
/* styling all anchors in the DTs */<br />
#TJK_DL dt a {background:0 50% no-repeat;padding-left:32px;color:#000;text-decoration:none}<br />
#TJK_DL dt a:visited {color:#666}<br />
#TJK_DL dt a:visited:hover, #TJK_DL dt a:hover, #TJK_DL dt a:active, #TJK_DL dt a:focus {font-weight:bold}<br />
/* the + and - gif in the anchors */<br />
#TJK_DL .DTplus a {background-image:url(toggleDLplus.gif)}<br />
#TJK_DL .DTminus a {background-image:url(toggleDLminus.gif)}<br />
/**********************************/<br />
/**********************************/<br />
#TJK_DL .showDD {position:relative;top:0}<br />
#TJK_DL dd,.hideDD{top:-9999px;position:absolute}<br />
#TJK_ToggleON,#TJK_ToggleOFF {display:inline;cursor:pointer; <span class="highlighter">cursor:hand</span>}<br />
</code>
</div>
<p class="smallText">Note: &#8220;cursor:hand&#8221; is for IE5 Win, but this declaration will make this sheet <span class="red">fail Validation</span>. If Validation is important to you, you can either delete this declaration or move it inside a <a title="Read about MicroSoft Conditional Comments" href="http://www.last-child.com/wp-admin/conditional_comments.asp">Conditional Comment</a>.</p>
<h3>TJK_ToggleDL_ie5mac.css</h3>
<div class="codewrap">
<code lang="CSS"><br />
/**//*/<br />
#TJK_DL .showDD {display:block}<br />
#TJK_DL dd,.hideDD {top:0; position:relative; display:none}<br />
 /**/<br />
</code>
</div>
<h2>For the <acronym title="Document Object Model">DOM</acronym> police</h2>
<p>Earlier versions of this script did <em>not</em> use document.write(), I was using the <acronym title="Document Object Model">DOM</acronym> to plug the stylesheets in the HEAD element. Unfortunately, setting the rel attribute of the LINK element makes Safari &#8220;go blank&#8221; and STYLE fails in IE Win. So, I decided to go with what works!</p>
<p><img src="http://www.tjkdesign.com//img/important.gif" class="plainimage" alt="important note" />This script should work in <acronym title="HyperText Markup Language">HTML</acronym> <em>and</em> <acronym title="eXtensible HyperText Markup Language">XHTML</acronym> documents.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.last-child.com/the-perfect-faq-page/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

