CSS Lists Links and Navigation Bars
CSS Lists Links and Navigation Bars
lists are made in html. we can style them in css with : list-style-type
Example: .anyClass { list-style-type : lower-roman ; }
This styles lists item markers (bullets, numbers, letters on the left of
every list item.)
For unordered list we can specify the shape we want to use as bullets.
default is disc thers are square or circle.
{list-style-position : inside ;}
-------------------
1. link (unvisited)
2. visited
3. hover (when a user put the mouse over it)
4. active (when clicked)
=========================================
Navigational Bars :
<ul>
<li><a>index.html</a>Home</li>
<li><a>...</a>...</li>
<li><a>...</a>...</li>
<li><a>...</a>...</li>
</ul>