Are you ready to improve your CSS skills with some of the latest tips and tricks? CSS is always changing, and these new features will help you write cleaner, more efficient code while making your websites look great. Here are some useful CSS tips, complete with examples on CodePen that you can try right away!
1. π Footer Stuck at the Bottom
Sometimes, content on your page is not enough to push the footer to the bottom of the viewport. You can use this simple CSS solution to make sure the footer stays at the bottom.
Check out the code on CodePen.
2. π§ Media Queries with Pointer Precision
Make the user experience better by changing your UI based on the type of pointing device. With the pointer
media query, you can adjust styles depending on whether the user has a precise pointer (like a mouse) or a coarse one (like a touchscreen).
Example on CodePen.
3. π‘ The Power of inset
CSS inset is a shorthand for top
, right
, bottom
, and left
. This property is useful for positioning elements easily, making your layout more readable and reducing extra CSS.
See how inset
works in this CodePen.
4. π₯ Using :empty for Placeholder Text
The :empty
pseudo-class lets you style an element if it has no children. Itβs useful for adding placeholder content, like when an image isnβt loaded.
Try it out on CodePen.
5. π Styling Elements with :where()
The :where()
pseudo-class is great for applying styles to multiple elements without adding specificity. Itβs perfect for resets or for general styling without affecting more specific styles.
See it in action on CodePen.
6. π οΈ Consistent Numeric Width with font-variant-numeric
Do you need numbers to line up perfectly, like in tables or financial data? Use font-variant-numeric: tabular-nums;
to make sure each number takes up the same space, making your data easier to read.
View the example CodePen.
7. π‘ Multiline Ellipsis for Overflowing Text
Preventing text overflow and making sure it looks good is important for UI design. You can use -webkit-line-clamp
to limit text to a fixed number of lines and add ellipsis (...). Itβs a simple way to handle multiline text overflow.
See how itβs done on CodePen.
8. π Independent Transform Properties
Instead of writing all transformations (rotate, scale, translate)
together, you can now apply each one separately using new properties like scale
, rotate
, etc. This makes your code easier to read and change.
Check the example on CodePen.
9. ποΈ The :has() Selector as a Parent Selector
The :has()
selector is like the parent selector weβve always wanted. You can now style an element based on whether it contains a specific child. This makes dynamic and interactive styling much easier.
Explore the example on CodePen.
10. π± Using System Colors in CSS
CSS system colors let you match your siteβs appearance with the userβs operating system or browser theme. This is great for creating visually consistent and accessible websites.
Check out the example CodePen.
11. π Container Queries for Advanced Responsiveness
With Container Queries, you can style elements based on the size of their container instead of the viewport. This means truly component-driven styling, allowing more flexible and context-aware responsive designs.
See Container Queries in action on CodePen.
12. π§ Set Your Form Styles with accent-color
The accent-color
property lets you style native form elements like checkboxes and radio buttons easily to match your design. This helps make sure all form elements look consistent.
Check the example CodePen.
13. π Responsive Font Size with clamp()
The clamp()
function is perfect for creating responsive font sizes that adapt to different screen sizes. It lets you set a minimum value, a preferred value, and a maximum value all at once. This ensures the text remains readable on all devices.
Check out the example on CodePen.
π οΈ Feel free to experiment with the examples on CodePen and see how they can make your CSS more dynamic and elegant. If you have any other modern CSS tips or know about new CSS features, share them in the comments! π
Top comments (0)