Monday, 21 July 2014

Vertical to horizontal menu using CSS

Vertical to horizontal menu using CSS
Use below Code in your HTML
<ul>
<li>menu A</li>
<li>menu B</li>
<li>menu C</li>
<li>menu D</li>
</ul>
View in the browser.
Now Add style..
<style type="text/css">
li {
width: 100px;
display: inline-block;
}
</style>
Now check in the browser..
view raw gistfile1.html hosted with ❤ by GitHub