/* Changes an element's color on hover */ .selector { background-color: black; } .selector:hover { background-color: blue; }
.a:hover{background-color: black;}
#element { transform: translateX(0px); background: #ffffff; transition: 0.5s; } #element:hover { transform: translateX(50px); background: #000000; transition: 0.5s; }
This is a standard link, it will become purple when clicked This is a special colored link and become red when clicked
This is a standard link, it will become purple when clicked
This is a special colored link and become red when clicked