This is my style containing the float left and fixed width.
<style>
ul { width:600px; }
ul li { list-style:none; float:left; width:49%; border:1px solid; }
This is my Html
<ul>
<li>testing</li>
<li>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a </li>
<li>testing</li>
<li>testing</li>
<li>testing</li>
<li>testing</li>
<li>testing</li>
<li>testing</li>
Now, The output will be like : first li element will take the height of the second big li element. And third li element will start with lot of white space under the first li element.
How to remove this space. Can put my third li block just below the my first li block?
`?
– Kheema Pandey May 29 '14 at 05:45