EN
CSS - add shadow on hover
0
points
In this article, we would like to show you how to add shadow on hover event using CSS.
Quick solution:
div:hover {
box-shadow: 10px 5px 10px gray;
}
The :hover CSS pseudo-class is triggered when the user hovers over an element with the cursor, changing the element style to the one specified within curly brackets.
Practical example
In this example, we add shadow to the div element with the following steps:
- in
divstyle, we specify the div style at the beginning and use thetransitionproperty to smoothly add shadow to thedivover1second, - we use
div:hoverpseudo-class withbox-shadowproperty inside that actually adds a shadow to thedivelement on the hover event.
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<head>
<style>
div {
height: 100px;
width: 100px;
background-color: deepskyblue;
transition: 1s;
}
div:hover {
box-shadow: 10px 5px 10px gray;
}
</style>
</head>
<body>
<div></div>
</body>
</html>