5 Hidden CSS Properties You Didn't Know Existed

Poetry Of Code - Apr 22 - - Dev Community

Cascading Style Sheets (CSS) are the backbone of web design, allowing developers to style and format web pages with ease. While most developers are familiar with the common CSS properties like color, font-size, and margin, there are numerous lesser-known properties that can add functionality to your designs. In this article, uncover five CSS properties that you may not have known existed, but which can significantly enhance your web development projects.

1. Text-decoration

.menu__list-link:hover {
  text-decoration: underline 2px solid green;
}
Enter fullscreen mode Exit fullscreen mode

text-decoration
Turn out for the classic text-decoration: underline you can add 3 more parameters. First is the width of the line (2px), second is the type of line (solid, dotted) and the third is the color for this line (green).

2. Text-underline-offset

.menu__list-link:hover {
  text-decoration: underline 2px solid green;
  text-underline-offset: 6px;
}
Enter fullscreen mode Exit fullscreen mode

Text-underline-offset

Text-underline-offset
It is very handy. Solve problem that occur pretty often, when some letters go below the line height and during hover effect underline interrupts by those letters. Pretty good solution to create offset from text to underline (6px).

3. Inset

For positioning relative, absolute, and others we often write top, right, bottom, left:

  top: 5px;
  right: 3px;
  bottom: 1px;
  left: 4px;
Enter fullscreen mode Exit fullscreen mode

to speed up the process of writing we can write above in a shorter version with the property inset:

inset: 5px, 3px, 1px, 4px;
Enter fullscreen mode Exit fullscreen mode

4. Object-position

We often apply to the image object-fit: cover - it will crop the image to a specified height & width in order to look sharp:

object-fit: cover

But we can't control which part of the image it will crop. So it is where object position comes into play.

.test {
  height: 350px;
  width: 500px;
  object-fit: cover;
  object-position: bottom;
}
Enter fullscreen mode Exit fullscreen mode

object-position: bottom

object-position: top;
Enter fullscreen mode Exit fullscreen mode

object-position: top

As well as we can add: left or right. Or even can be more precise when we specify 2 parameters like object-position: center bottom;

5. Scroll margin top

By default, when we link to section on the page <a href="#fairy-tale__inner">Itinery</a> it will bring exactly to the top of that section.

Scroll margin top

But if we want to make space we need to use scrool-margin-top

#fairy-tale__inner {
  scroll-margin-top: 100px;
}
Enter fullscreen mode Exit fullscreen mode

Scroll margin top

So go ahead, dive into the world of hidden CSS properties, and elevate your designs to the next level!

. . . . . . . . . . . . . . . . . . . . . . . . . . . .
Terabox Video Player