My website contacts are HOME ABOUT CONTACT ME. My website have a sticky bar at the top and contacts have in this bar, I want to underline height must be 2px. by the way, I also want to Shadow of sticky bar and background-color is gradient color. I don't know how to do it.

1

There are 1 best solutions below

0
pavani lakshmi On

Please paste your basic code to review and comment. You can add a div element or class element to your Contacts, and style the div/class element to following code. Suppose, your contacts is an anchor tag:

<a href="#" class="contacts">Contacts</a>

CSS:

a:hover{
  text-decoration: underline;
}
    
.contacts{
  line-height:2px;
}