EN
CSS - link background change on hover
0 points
In this article, we would like to show you how to change link background on hover using CSS.
Quick solution:
xxxxxxxxxx
1
a:hover {
2
background: yellow;
3
}
In this example, we use CSS :hover
pseudo class to create a separate style for a
element that is hovered. In order to change the background color, we use background
CSS property.
xxxxxxxxxx
1
2
<html>
3
<head>
4
<style>
5
6
a:hover {
7
background: yellow;
8
}
9
10
</style>
11
</head>
12
<body>
13
<a href="https://www.dirask.com/">Hover me to change background</a>
14
</body>
15
</html>