Checking the Easy Stuff: XHTML


If you're making the jump to XHTML, it's easy to miss a few of its syntax rules. Make sure you check them first.

To check the easy stuff with XHTML:

  • Be sure all attribute values are enclosed in straight, not curly, quotes. If the value itself contains quotes, use references (see page 336). Also note that a value can contain single quotes if the value is enclosed in double quotes, or double quotes if the value is enclosed in single quotes (Figures 22.4 and 22.5).

    Figure 22.4. If an attribute's value contains a single quote, you can just enclose it in double quotes as usual.

    Figure 22.5. If an attribute's value contains double quotes, either use references (top), or enclose the attribute value in single quotes (bottom).

  • Make sure all elements have opening and closing tags, or one combination tag (with a final /). Always put a space before the / to ensure compatibility with older browsers.

  • Don't combine opening and closing tags for elements that usually have content. For example, while <p /> is technically correct in XHTML, browsers won't always know what to do with it. In the same vein, don't use separate opening and closing tags for empty elements as in <img src="/books/2/62/1/html/2/woody.gif" alt="cat"> </img>. Again, while this is perfectly valid XHTML, browsers will be confused (Figures 22.6 and 22.7).

    Figure 22.6. Here are two examples of valid XHTML that will give most browsers a headache.

    Figure 22.7. Instead, don't combine the opening and closing tags of elements that aren't usually empty (like p) and don't use individual opening and closing tags for elements that are usually empty (like img).

  • Be careful about case. All elements, attributes, and predefined values should be in lowercase letters.

  • Don't leave out the # when specifying hexadecimal colors.

  • If symbols or accented characters are not displaying properly, see Chapter 21, Symbols and Non-English Characters.




HTML, XHTML, & CSS(c) Visual QuickStart Guide
HTML, XHTML, and CSS, Sixth Edition
ISBN: 0321430840
EAN: 2147483647
Year: 2004
Pages: 340

flylib.com © 2008-2017.
If you may any questions please contact us: flylib@qtcs.net