KESHAVi PATEL,
Firstly, if you’re trying to LEARN CSS, get rid of DREAMWEAVER. It’s a WYSIWYG editor. Not helpful.
It’s expensive and it’s not necessary.
HTML
<div id=‘navcontainer’>
<ul id=‘navlist’>
<li></li>
<li></li>
</ul>
</div>
CSS
#navcontainer ul#navlist{
list-style-type: none;
margin-left: 0;
padding-left: 0;
}
#navcontainer ul li{
display: block;
}
#navcontainer ul li a{text-decoration: underline; ...etc…}
#navcontainer ul li a:hover{ .... etc ... }
Something like the above, you’ll have to play with it to tune it to your liking ...
Al Toman