Horje
on hover css Code Example
on hover css
/* Changes an element's color on hover */

.selector {
	background-color: black;
}

.selector:hover {
	background-color: blue;
}
css hover
.a:hover{background-color: black;}
css hover
#element {
  transform: translateX(0px);
  background: #ffffff;
  transition: 0.5s;
}
#element:hover {
  transform: translateX(50px);
  background: #000000;
  transition: 0.5s;
}
style hover
<style>
a.special:link {
    color: green;
}

a.special:visited {
    color: red;
}
</style>

<p><a rel="nofollow" href="#">This is a standard link, it will become purple when clicked</a></p>
<p><a rel="nofollow" class="special" href="#">This is a special colored link and become red when clicked</a></p>




Css

Related
css change text color Code Example css change text color Code Example
asterisk symbol with red color in html span Code Example asterisk symbol with red color in html span Code Example
remove clicked button border Code Example remove clicked button border Code Example
red asterix css Code Example red asterix css Code Example
css image cover Code Example css image cover Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
11