What fresh hell is THIS now? - Patrick Lauke
[alacker] My company has been working towards compliance for some time. I've been driving a lot of the work, but I would prefer to get a second opinion as I don't trust my own. Our UX people are recruiting for user testing, but I'd love to get a third party to verify and help write a VPAT/compliance documentation.
I've found some companies that do this, but does anyone here have experience with one and recommend them? How much should I be expecting to pay for the assistance?
Thanks in advance for any information!
[anastasia] Hi guys, I am torn between using <dl>
or <ul>
.
By design list items should go one after another (horizontally) and this is not possible to achieve with <dl>
because of its structure. So the solution is either to use unordered list or 3 definition lists. First one doesn't look semantically correct and second one destroys the list idea.
<ul> <li> <h4>Item title</h4> <p>Item description</p> </li> <li> <h4>Item title</h4> <p>Item description</p> </li> <li> <h4>Item title</h4> <p>Item description</p> </li> </ul>
OR
<dl>
<dt>Item title</dt>
<dd>Item description</dd>
</dl>
<dl>
<dt>Item title</dt>
<dd>Item description</dd>
</dl>
<dl>
<dt>Item title</dt>
<dd>Item description</dd>
</dl>
`\
<dl>
, but it's from 2007 and I'm not sure it's relevant