5 Css Hacks Every Developer Should Know
IDEA CREDIT => @Surreal.dev
1. FIXING AN ELEMENT'S POSITION
/* suppose you want to fix your sidebar's position and size. .sidebar {
position: absolute;
top: 15px;
right: 15px;
width: 300px;
height: 150px;
}
** use this method carefully and test...
musprodev.hashnode.dev2 min read