Jump to content

Ganesh Ujwal

Members
  • Posts

    1
  • Joined

  • Last visited

Posts posted by Ganesh Ujwal

  1. difference between "nav li:hover" & "nav li:hover a"?

    Code:
    nav li:hover {        background: #4b545f;        background: linear-gradient(top, #4f5964 0%, #5f6975 40%);        background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);        background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);    }
    Code:
    nav li:hover a {        background: #4b545f;        background: linear-gradient(top, #4f5964 0%, #5f6975 40%);        background: -moz-linear-gradient(top, #4f5964 0%, #5f6975 40%);        background: -webkit-linear-gradient(top, #4f5964 0%,#5f6975 40%);    }

    both are same or not?

×
×
  • Create New...