10 Best CSS Tips For Front End Developers
Posted by TotalDCThese are 10 CSS tips and tricks that will help you in projects.
Prevent <textarea> From Resizing With CSS
You can use the resize property to prevent an element from being resized.
textarea.no-resize {
resize: none;
}
textarea.horizontal-resize {
resize: horizontal;
}
textarea.vertical-resize {
resize: vertical;
}
Drop Shadow With CSS
You can use the drop-shadow() filter effect on transparent images. It will give a much better shadow effect than using the box-shadow property.
img {
filter: drop-shadow(0 0 3px #000);
}
Center Any <div> Element With CSS
It can sometimes be difficult to center a <div> element on the page, but not with this tip. You can center any <div> element on the page using a few lines of CSS code.
body {
display: grid;
place-items: center;
}
Prevent Highlighting With CSS
This one is similar to #2, but you can use the user-select property to prevent an element from being highlighted by the user.
.no-highlight {
-webkit-user-select: none;
-moz-user-select: none;
user-select: none;
}
Input Range Pseudo Classes With CSS
The lesser-known :in-range and :out-of-range pseudo-classes can help you validate an <input> element whose current value is within the range specified by its min and max attributes.
input:in-range {
background: rgba(0, 255, 0, .25);
}
input:out-of-range {
background: rgba(255, 0, 0, .25);
}
Image Overlay With CSS
You can create an image overlay using the object-fit property. This can prove to be useful when you want to create a hero image on your website.
.image-overlay img:only-of-type:nth-child(1) {
object-fit: cover;
opacity: .6;
}
The Transition Property In CSS
The transition property allows you to define the transition between two states of an element. It is mostly used for hover animations.
a {
color: #0d6efd;
text-decoration: none;
-webkit-transition: .15s ease-in-out;
-moz-transition: .15s ease-in-out;
transition: .15s ease-in-out;
}
a:hover {
color: #0a58ca;
}
Smooth Scrolling With CSS
When you visit some websites and try to go to different sections, it scrolls smoothly to that section. You can achieve this feature on your website by using one line of CSS.
html {
scroll-behavior: smooth;
}
Drop Cap With CSS
You can add a drop cap to a paragraph by using the ::first-letter pseudo-element.
::first-letter {
font-size: 250%;
}
Input Caret Color With CSS
You can use the caret-color property to change the color of the input field caret.
input {
caret-color: red;
}