Answers for "active link css"

6

css on click

<!DOCTYPE html>
<html>
<head>
  <style>
    /* On click: */
    a:active {
      background-color: yellow;
    }
    button:focus {
      background-color: yellow;
    }
    /* On hover: */
    h1:hover {
      background-color: red;
    }
    p:hover {
      background-color: red;
    }
  </style>
</head>
<body>
  <a href="#">Click Me</a>
  <button>Click me</button>
  
  <h1>Hover over me</h1>
  <p>Hover over me</p>
</body>
</html>
Posted by: Guest on October-25-2020
1

link active css

a:active {
  background-color: #34D399;
}
Posted by: Guest on May-05-2021
2

active link

# Foward slash is equal to homepage. For all others you use IN keyword.
<li 
  {% if '/' == request.path %}
  	class="nav-item active mr-3"
  {% else %}
  	class="nav-item mr-3"
  {% endif %}
>

<li 
  {% if 'about' in request.path %}
      class="nav-item active mr-3"
  {% else %}
      class="nav-item mr-3"
  {% endif %}
>
Posted by: Guest on November-24-2020
0

active link

#top-menu .current a
{
    color: orange !important;
}
Posted by: Guest on June-27-2021

Browse Popular Code Answers by Language