EN
CSS - rotate div on hover
0
points
In this article, we would like to show you how to rotate div on hover event using CSS.
Quick solution:
div {
transition: 1s;
}
div:hover {
transform: rotate(360deg);
}
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 rotate the div element with the following steps:
- in
divstyle, we specify the div style at the beginning and use thetransitionproperty to smoothly rotate thedivover2seconds, - we use
div:hoverpseudo-class withtransformproperty inside that actually rotates thedivelement on the hover event.
// ONLINE-RUNNER:browser;
<!doctype html>
<html>
<head>
<style>
body {
height: 200px;
}
div {
height: 100px;
width: 100px;
background-color: green;
margin: 30px;
transition: 2s;
}
div:hover {
transform: rotate(360deg);
}
</style>
</head>
<body>
<div></div>
</body>
</html>