This is the section on the site that I am creating that contains some information divided into two columns. There are “keys” in the left column (I don’t know what else to call it, sorry), and the right column has values, as shown below:

By floating inner divs and using some other styles, I can achieve this exact result using something like this:
<div id="container"> <div> <ul> <li>Size</li> <li>etc...</li> </ul> </div> <div> <ul> <li>10MB</li> <li>etc...</li> </ul> </div> </div>
But since each key is completely separate from its value, the markup does not seem to be a search engine at all. Is there any other way to do this while maintaining a centered style and having the markup more semantic?
Thanks for the help,
Daniel
source share