Get Down With Markup - Method C: Getting closer
(Page 4 of 9 )
<li>Apples</li>
<li>Spaghetti</li>
<li>Green Beans</li>
<li>Milk</li>
Method C brings us closer to a preferable solution, but fails miserably in one potentially obvious way: It’s still not valid markup.
We’ve closed each <li> tag properly, and since they are block-level elements, using them eliminates the need for a <br /> tag, putting each list item on its own line. But, we’re missing an outer layer of structure, lacking a containing element that denotes “This group of items is a list!”
It’s also important to view this from a semantic angle as well—that the list is a group of items that belong together, therefore they should be denoted as such. Furthermore, using proper list tags says very clearly to the browser, software, or device, “This group of items is a list!” A good example of how semantic markup is about structuring items for what they are.
Block level vs. inline: HTML elements can inherently be either block level or inline. Block-level elements begin on their own line, followed by a line break, while inline elements are rendered on the same line as other inline elements. Block-level elements can contain other block-level or inline elements, while inline elements can't contain block-level elements. Some examples of block-level elements include <div>, <hl>-<h6>, <form>. some examples of inline elements include <span>, <strong>, <em>, <q>. |
If we were to look at our grocery list in purely an XML sort of way, we might choose to mark it up as shown in this example:
<grocerylist>
<item>Apples</item>
<item>Spaghetti</item>
<item>Green Beans</item>
<item>Milk</item>
</grocerylist>
The entire list has a containing element, <grocerylist> that all of the grocery items belong to. Grouping the items in this manner will make life easier for XML-based applications that may want to extract the items from the list.
For instance, a developer could author an XSLT style sheet that would transform this list of items into XHTML, plain text, or even a PDF document. Because of the predictable nature of a group of list items, software will have an easy time taking the information and doing something useful with it.
While I’m not dealing with XML in this book directly, the principles are carried over to the world of XHTML. Providing a meaningful structure to our markup gains flexibility later on. Whether it be the increased ease of adding CSS to properly structured documents or the improved manageability of making changes to markup that is easy to understand— providing that structure will make for less work later on down the road.
Let’s take a close look at Method D and see how this all fits together—providing a structure that the most browsers and devices can read, while also allowing us to style our list in several different ways.
This chapter is from Web Standards Solutions: The Markup and Style Handbook by Dan Cederhold (Apress, 2004, ISBN: 1590593812). Check it out at your favorite bookstore today. Buy this book now.
|
Next: Method D: Wrapper’s delight >>
More Web Standards Articles
More By Apress Publishing