html - Text and div vertical aligning inside a list element -


i have following layout:

<ul>     <li>text         <div class="task"></div>     </li> </ul> 

see fiddle. having problems aligning text text. on same line div. align (vertically) text middle of div. have tried nesting text inside span , giving span margin-bottom, padding-bottom, nothing seems work.

beware of spacing issues inline-block - http://robertnyman.com/2010/02/24/css-display-inline-block-why-it-rocks-and-why-it-sucks/

http://jsfiddle.net/6axbh/1/

.task {   display:inline-block;   vertical-align: middle; } 

Comments

Popular posts from this blog

PHPMotion implementation - URL based videos (Hosted on separate location) -

c# - Unity IoC Lifetime per HttpRequest for UserStore -

I am trying to solve the error message 'incompatible ranks 0 and 1 in assignment' in a fortran 95 program. -