Wiley.com
Print this page Share

Accessible XHTML and CSS Web Sites: Problem - Design - Solution

ISBN: 978-0-7645-8306-3
Paperback
450 pages
April 2005
Accessible XHTML and CSS Web Sites: Problem - Design - Solution (0764583069) cover image
This title is out-of-print and not currently available for purchase from this site.

Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.

ChapterPageDetailsDatePrint Run
51 Error in Code
3rd highlighted line of code on page

<input type="text"
should begin:
<input type="checkbox"
8/25/05
59 Error in Text
2nd bullet beginning with "Inline Elements" first line:

Inline elements appear within block-level elements, do not necessarily start a new line, and

Should be:

Inline elements appear within block-level elements, they do not necessarily start a new line, nor
7/18/05
73 Error in Code
2nd code line:

<img src="images/interface/1px.gif" height="15" width="150" />

Should be:

<img src="images/interface/1px.gif" height="15" width="150" alt="" />
7/18/05
74 Error in Code Block
Last code block, first line:

<div class="welcomeText">

Should be:

<div id="welcomeText">
7/18/05
76 Error in Code Block
2nd code block, 1st line:

<div>

Should be:

<div class="footer">
7/18/05
125 Bulleted List
Bullet list at bottom should read:

· border-bottom-style
· border-right-style
· border-top-style
· border-left-style
7/18/05
143 Add Line
Please add this to the bottom of the page, after the current last paragraph:

In order to link the XHTML page to the style sheet you will need to add the <link /> element (which was discussed at the beginning of this chapter) inside the <head> element of the document. On the home page the <link /> element will look like this:

<head>
<link rel="stylesheet" href="interface.css" type="text/css" />
</head>
7/18/05
145 Error in Code
Last code line:

td#tagline {

Should be:

td#sitedescription
7/18/05
146 Error in Code
Last highlighted code line:

img {border-none;}

Should be:

img {border:none;}
7/18/05
147 Error in Code
Last code line:

margin:19px;}
Should be:
margin:1px;}
7/18/05
149 Error in Code Block
First code block, last line:

border:solid 2px #666666;}
Should be:
border:solid 2px #999999;}
7/18/05
149 Error in Code
Last line of code:

div#FeaturedItemsImage {left-margin:25px;}
Should be:
div#FeaturedItemsImage {margin-left:25px;}
7/18/05
180 Error in Text
3rd bullet paragraph, last line:

and finally lowest.
Should be:
and finally lowest, inset.
7/18/05
186 Error in Code Block
2nd code block, first line:

@import "codestyle.css"
Should be:
@import "codestyle.css";
7/18/05
234 Error in Code Block
First code block, 8th line, beginning of line:

href="customerGifts.html"
Should be:
href="customGifts.html"
7/18/05
256 Error in Heading
Last heading:

Using markup instead than images
Should be:
Using markup instead of images
7/18/05
290 Error in Text
1st paragraph, 2nd line, end:

should do you best to
Should be:
should do your best to
7/18/05
294 Error in Code Block
Last code block, 2nd line:

race numbers
Should be:
driver names
7/18/05
302 Error in Code Block
2nd code block, 2nd line:

<label for="accountName">Account name</a>
Should be:
<label for="accountName">Account name</label>
7/18/05
306 Error in Code Block
Code block, 13th line (this is the first of 3 lines that end with id="q35":

id="q35"
Should be:
id="q37"
7/18/05
306 Error in Code Block
Code block, 15th line (this is the second of 3 lines that end with id="q35"

id="q35"
Should be:
id="q36"
7/18/05
Back to Top