I want to display the href similar to this picture (home, About, Portofolio...) vertically, in the middle and same alignment.
HTML Code:
<body bgcolor="#E6E6FA" leftmargin=150px topmargin=20px link="blue" vlink="purple" hlink="darkpink">
<a href="SiteMap.html" > Home </a>
<a href="About.html" > About </a>
<a href="Portfolio.html" >Portfolio</a>
<a href="Services.html" >Services </a>
<a href="info.html" >Contact </a> <br> <br> <br>
You can try this:
I am not sure what you want in href static or hover:
If href default:
li a {
border-bottom: 2px dashed #000;
}
if href hover:
li a:hover {
border-bottom: 2px dashed #000;
}
you can use border is dotted or dashed looking for your site.