css-protips
css-protips copied to clipboard
⚡️ A collection of tips to help take your CSS skills pro 🦾
Multiple colors can be added to texts in form of gradients instead of the common practice of adding a single color. This provides developer with the privilege of producing creative...
Avoid the !important tag
Added a new tip to detect if the user prefers a light theme or a dark theme using the `prefers-color-scheme` media feature. This tip can be really helpful to implement...
I think this repo must contain the aspect ratio hack...It can be use widely in hero section , responsive styling and grid based content.... Here is more info about the...
New Translation of the Readme file is added. Language বাংলা/ Bengali Indian Language added.
This PR adds a simple tip for a wrapper utility class which resolves #135.
You should add a tip for a simple wrapper/container utility. For example: ```css .wrapper { margin-right: auto; margin-left: auto; max-width: 960px; padding-right: 10px; padding-left: 10px; } ``` It's explained more...
Hi, Please can I add an animation on load, which can be added to any element via. a class. @keyframes slideInFromLeft { 0% { transform: translateX(-100%); } 100% { transform:...
## I made 3 commits 1. In the first commit, I numbered all the protips. 2. In the second commit, I added protip for Smooth-Scrolling 3. In the third commit,...