
- Forum
- Programming Talk
- Html
- CSS Navigation Menu
CSS Navigation Menu
This is a discussion on CSS Navigation Menu within the Html forums, part of the Programming Talk category; Hi Friends, how to create horizontal navigation menu using Html Lists and CSS? which attribute can i use for Horizontal ...
-
CSS Navigation Menu
Hi Friends,
how to create horizontal navigation menu using Html Lists and CSS? which attribute can i use for Horizontal List in Css?
Thanks
surya
-
you can create navigation menu using Html list.For Example
HTML Code :
PHP Code:<ul id="menu">
<li id="Current"><a href="#">Home</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact Us</a></li>
</ul>
CSS style for Menu
for Vertical)
ul#menu li {
list-style: none;
background-color: #039;
border-top: solid 1px #039;
text-align: left;
margin: 0;
}
ul#menu li a {
display: block;
text-decoration: none;
padding: .25em;
border-bottom: solid 1px #39f;
border-right: solid 1px #39f;
}
a:link, a:visited { color: #fff; }
a:hover, a:active { color: #000; }
CSS style for Menu
for Horizontal )
ul#menu li {
list-style: none;
background-color: #039;
border-top: solid 1px #039;
text-align: left;
margin: 0;
float: left;
}
ul#menu li a {
display: block;
text-decoration: none;
padding: .25em;
border-bottom: solid 1px #39f;
border-right: solid 1px #39f;
}
a:link, a:visited { color: #fff; }
a:hover, a:active { color: #000; }
try this
Thanks
megabyte
Last edited by megabyte; 04-19-2009 at 01:20 AM.
-
12-14-2010, 01:41 AM #3
- Join Date
- Dec 2010
- Answers
- 34
Make sure you preview your code in several browsers.. the code given will barf in IE.
-
08-23-2011, 05:10 AM #4
- Join Date
- Aug 2011
- Location
- Hyderabad
- Answers
- 22
It works fine in latest browsers. Check out once in IE6 and IE7
-
Sponsored Ads

Reply With Quote





