I'm using third party libraries like Kendo which output various types of HTML elements when they render.
So you might end up with a scenario such as this:
<ul>
<li>
<label>label text</label>
<div>muli select widget</div>
<span>date selector</span>
</li>
</ul>
NB! Assume I don't have control over the HTML rendered from these widgets/third party tools.
The problem is vertical alignment for the scenario above. I've created a JSFiddle which shows how the label doesn't vertically align properly. See here:
How would I get all three these elements to vertically align perfectly?
](http://stackoverflow.com/questions/5219324/vertical-align-img-and-text-inside-p)
– Marc Audet Sep 23 '13 at 10:25