DEV Community

Jesse de Bruijne
Jesse de Bruijne

Posted on

How to choose the right CSS properties

CSS might seem very daunting. There are many properties to choose from, and it may sometimes look like it's not doing what you tell it to. Or, sometimes you find yourself thinking: "There is more than one way to do this in CSS". In this blog post I'll cover some of these scenarios, and help you understand how you can justify your CSS decisions.

1. Edge cases

In my opinion, the most important reasoning behind your CSS usage. If you find yourself in a situation where you have multiple CSS solutions, this should be your first thought. Think of scenarios that might not be included in the design, and how your CSS would react to those. Examples of edge cases include:

  • What if the text in this element becomes very long?
  • What if the user uses a smaller device?
  • What if the user zooms in using the browser zoom?

Let's take for example: how to center a div.

<div class="example">
  <div class="number">1</div>
</div>
Enter fullscreen mode Exit fullscreen mode
.example {
  border-radius: 50%;
  background-color: magenta;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
}
Enter fullscreen mode Exit fullscreen mode

The .example element is a magenta circle of 40x40. Say we want to place this 1 exactly in the middle of the .example div. You could do this:

.example {
  padding: 11px 16px;
}
Enter fullscreen mode Exit fullscreen mode

Which works, and looks like this:

Looks perfect! But now watch what happens if it's not 1, but 11 as a number:

Now the text is not centered in the div anymore! A different approach like Flexbox might be your preferred solution then:

.example {
  display: flex;
  align-items: center;
  justify-content: center;
}
Enter fullscreen mode Exit fullscreen mode

Thinking outside of the box can help a great deal in deciding which CSS solution is the right fit, because it actually eliminates "wrong" solutions.

2. Browser support

The never-ending struggle of the front-end developer. Browsers all have their unique quirks and features! Or as we developers call them, bugs and inconsistencies. Taking browser support into account can be a deciding factor on which CSS properties to use. The main browsers to take into account are Safari and, to a lesser extent, Internet Explorer 11.

If you want to know more about why these browsers specifically, click here
Safari has a very different approach to development compared to Edge, Chrome or Firefox. They only release new versions every 6 months, and so bugs are always there for at least 6 months. To read a more extensive rant on Safari, I can recommend this article.

Internet Explorer 11 is reaching its end of life very soon, and the whole development world will breathe a sigh of relief when it does. The browser has been ridiculously outdated for a while now, and new awesome features like CSS Grid, or Flexbox, were either not implemented at all, or implemented in their own way. This resulted in many inconsistencies when comparing your page in IE11 to for example Google Chrome.


For example, let's say you want to change the opacity of an element. You could use either of these two lines:

.element {
  filter: opacity(0.5);
  opacity: 0.5;
}
Enter fullscreen mode Exit fullscreen mode

The first way, using filter, actually performs better because browsers can use hardware acceleration. However, it's not supported in IE11. So, if your users use IE11, you might want to avoid using filter. Alternatively, some browsers offer compatibility through the use of prefixes like -webkit-animation instead of animation. Many projects these days use a form of Autoprefixer to automatically do this for you.

Whenever you're in doubt about what CSS to use, you could check which approach works best in all browsers. Test your solution in Safari or Internet Explorer, or use Caniuse to check if something is supported in all (or enough) browsers. If there is a clear difference, you'll have your answer.

Maintainability

From this point the reasoning becomes more subjective, and so I've stopped numbering them. Whatever floats your boat more.

What if someone has to come back to your HTML/CSS and made some adjustments? Will that person be able to understand what's going on in the ruleset? Can they easily amend some of the HTML without the rules becoming invalid? Keep in mind, this person could be you! Think of the future when you write your CSS.

For example, let's say your HTML structure looks like this:

<nav>
  <button>Home</button>
  <button>Options</button>
</nav>
Enter fullscreen mode Exit fullscreen mode

If you want your options button to be aligned to the right within the nav, you could achieve that like this:

nav:first-child + * { 
  margin-left: auto;
}
Enter fullscreen mode Exit fullscreen mode

And that would be completely fine! For now. If a developer comes back to this after a month or two and makes a slight tweak to the HTML, this CSS will not work anymore.
Here's some HTML tweaking examples that break this CSS rule:

<nav>
  <button>Home</button>
  <button>Blogs</button> <!-- Now this element is targeted -->
  <button>Options</button>
</nav>
Enter fullscreen mode Exit fullscreen mode
<nav>
  <div> <!-- This is now the first child, and it has no sibling -->
    <button>Home</button>
    <button>Options</button>
  <div>
</nav>
Enter fullscreen mode Exit fullscreen mode
<nav>
  <img class="company-logo" src="...">
  <button>Home</button> <!-- Now this element is targeted -->
  <button>Options</button>
</nav>
Enter fullscreen mode Exit fullscreen mode

Furthermore, it is not very easy to read. Instead, you could do this:

<nav>
  <button class="home-button">Home</button>
  <button class="options-button">Options</button>
</nav>
Enter fullscreen mode Exit fullscreen mode
nav .options-button { 
  margin-left: auto;
}
Enter fullscreen mode Exit fullscreen mode

This CSS is much clearer to read (the .options-button in the nav should have space to the left). It is also unaffected if for example a wrapper <div> is added around the buttons, or if more menu items are added before it.

Semantics

This is in my opinion the best way to settle 50/50 questions like: should I use padding or margin? Should the top element have margin-bottom or should the bottom element have margin-top? Let me explain what I mean.

Let's take as an example a button containing some text.

<button class="example-button">
  <div>Click me!</div>
</button>
Enter fullscreen mode Exit fullscreen mode

You could use either of these rulesets to achieve the same effect:

.example-button {
  padding: 10px;
}

.example-button div {
  margin: 10px;
}
Enter fullscreen mode Exit fullscreen mode

Result:

But which of these rules make more sense? Is it more logical that the button should always have 10px of breathing room on the inside, or that the div inside the button always has 10px of breathing room on the outside?

A trick I like to use here is: try to imagine there's another element in the equation. In this case, maybe the button has an icon before the text. In that case, is it more important that the button has the padding, or that the text has the margin? Then it seems more logical that the button should have padding.

Let's look at another example:

<h2 class="example-header">Beautiful header</h2>
<p class="example-text">Lovely bit of text</p>
Enter fullscreen mode Exit fullscreen mode

Let's say we want to add 20px of space between these elements. Do you give the .example-header a margin-bottom? Or the .example-text a margin-top?

If we apply the same trick as before, we can for example imagine another paragraph before .example-text. Would you want the 20px space to be between the two paragraphs, or between the header and the first paragraph? By looking at it this way it makes more sense to add the margin on the bottom of the header.

Less is more

Performance is important. Longer CSS means more bytes. More bytes means longer loading time. It's not the reasoning I use often, since the differences are often minimal and not as impactful as reducing your JavaScript code, but it's a valid reason to write margin: 0 3px 6px 1px; instead of spelling out each individual property.

Conclusion

I hope this post will help you either make a decision on which CSS properties to use, or justify a decision that you've already made. I now leave it up to you to put these in your personal order of importance. Personally, I love semantics and I find myself often basing my CSS decisions on that rule, after checking for edge cases or browser support. However, I know preferences differ and I want everybody to write their CSS the way they want to. Just, keep this in the back of your mind 😉.

Oldest comments (0)