Today's day 19 Goal is to build a CSS hover me transition.
HTML
1. Create a heading.
- Write the following code.
<h1>hoverme</h1>
CSS
how to place contents to center?
body{
display: grid;
place-content: center;
}
how to display an object using pseudo element?
h1::before{
content: "";
display: block;
background-color: rgb(93, 104, 231);
height: 1em;
width: 1em;
position: absolute;
}
how to display object using hover element?
h1:hover::before{
JavaScript
-
Conclusion
Place contents to center.
Display an object using pseudo element.
Display object using hover element.
My Code:
Author: Dheeraj.y