This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.. |