Skip to content

Instantly share code, notes, and snippets.

@JustMrMendez
Created September 15, 2023 15:59
Show Gist options
  • Save JustMrMendez/b0a5091972fb1bbe51655345537e6af3 to your computer and use it in GitHub Desktop.
Save JustMrMendez/b0a5091972fb1bbe51655345537e6af3 to your computer and use it in GitHub Desktop.

Decoding CSS Shorthand Properties – The Shortcut to Efficient Styling

Decoding CSS Shorthand Properties – The Shortcut to Efficient Styling

Hello future web masters! Today, we jump into the fun world of "CSS shorthand properties". Shorthands are like tiny seeds that grow into big, time-saving trees. Let's dive in!

Why Bother?

Let's imagine you cook a big meal. You're chopping all the veggies, marinating the meat, stirring the sauce, and baking the bread. Phew! CSS shorthand is like a magic recipe. It puts all those steps into one quick action. It's your shortcut to designing faster and easier.

Your Shortcut Keys: CSS Shorthand Properties

The ones we use all the time are padding, margin, border, font, background, and grid. Let's look closer -

1. Padding / Margin

Padding and margin can both have up to four values. The order is: top, right, bottom, left. Think of the face of a clock!

div {
  padding: 10px 15px 10px 5px; /* Top, Right, Bottom, Left */
  margin: 20px 25px 20px 10px; /* Same here! */
}

Margin-radius

Margin-radius is a special case. It has four values too, but the order is: top-left, top-right, bottom-right, bottom-left. Think of a clock again, but this time, the hands are pointing to the corners.

div {
  border-radius: 10px 15px 10px 5px;
  /* Top-Left, Top-Right, Bottom-Right, Bottom-Left */
}

2. Border

There are three parts - border-width, border-style, border-color. Just think - width, style, and then color!

div {
  border: 1px solid black;  /* Width, Style, Color */
}

3. Font

Font has several parts - font-style, font-variant, font-weight, font-size / line-height, font-family. But it's as easy as a dance!

body {
  font: italic small-caps bold 12px/30px Arial, sans-serif; /* Just follow the beats */
}

4. Background

Background has a mix of parts - background-color, background-image, background-repeat, background-attachment, background-position. You can mix them in any order you like.

body {
  background: red url("image.jpg") no-repeat fixed center / cover; 
  /* Any order is fine, but if specifying background-size, use / after background-position. */
}

The rule, / cover sets the background-size to "cover", ensuring the image covers the entire element, potentially cropping it to maintain its aspect ratio. It comes after the background-position value.

5. Grid

Grid is tricky with lots of parts. To start - grid-template-columns/ grid-template-rows - think of "/" as a magic line in the middle.

grid: auto-flow / 200px; /* auto-flow for rows & 200px column width, the "/" works like a magic line */

Remembering the Magic - What's with the Order?

No worries! Look for patterns. Many times, the order starts with the general style and goes to specific parts. For example, font starts with style and variant and goes to specific size and family. You'll get it figured out!

For the "/" or magic line, it separates two different properties like rows and columns. With practice, you'll know which values go together.

In Simpler Terms

So, is shorthand always the best? Not always. Sometimes, it's better to be clear and avoid trouble later. But knowing how to use CSS shorthand properties can save you time and make your code look neater. Once you get these, you can call yourself a shorthand pro!

Experiment on your own, and don't worry about mistakes. Every mix-up brings you closer to getting it right. Dig into the code, it's worth it. Happy coding, guys! 💻🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment