-3

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.

  • 5
    What HTML have you written so far? You say your "*website contacts are*..." but what elements are those "contacts" nested within? When you tried to write your CSS, where did you get stuck? Please read (both) the "*[mcve]*" and "*[ask]*" guidelines, and consider taking the [tour] to better understand how to use the site. – David Thomas Jun 18 '23 at 16:43
  • Please provide enough code so others can better understand or reproduce the problem. – Community Jun 19 '23 at 05:56

1 Answers1

0

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;
}
DaveL17
  • 1,673
  • 7
  • 24
  • 38