How To Be Creative With Different CSS Border Styles

Marilena

By Marilena

12 min read
Bookmark this post

Hello everybody! 😀 In this post, we’ll work with the amazing CSS border property, which is basically the line that surrounds our objects. Borders are an independent property and do not affect the content within. You can think of borders as beautiful frames that enclose HTML elements. ✨ 🖼 Let’ dive into the details of CSS border styles.

When working with borders we have four key properties to consider:

  • border-width
  • border-style
  • border-color
  • border-radius

Furthermore, we have the option to handle each side individually by using properties like border-top, border-right, border-bottom and border-left. We can either modify all four sides at once or selectively apply changes to different sides.

Below, there are some basic examples of borders so that you can have a quick glimpse of the possibilities offered by this CSS property. Afterward, we will go deeper and explore every case more analytically.

CSS border styles: This is an image that shows a box with border box none.
CSS border styles: This is an image that shows a box with 4 sides border, 10px width, dotted style and color black.
CSS border styles: This is an image that shows a box with 1 side border, 10px width, dashed style and color purple.
CSS border styles: This is an image that shows a box with 2 sides border, 8px width, double style top but solid style bottom and color white.
CSS border styles: This is an image that shows a box with a 3 sides mixed styled and mixed color border with 5px width and border-radius 50px.
CSS border styles: This is an image that shows a 4 sides border with 10px width, solid style, color blue and border-radius 25%.

CSS border style – The playful property

We can now move forward and focus on the first thing we need to know about borders is the border-style CSS property. There are many styles available, but for today, we will concentrate on the most common ones.

The first and most usual is the solid type which is just a simple line. Then we have the double which is as you’d expect a double line border. Another style is the dashed one in which, the line is made up of dashes. It’s nice to have clear and descriptive names right? Finally, the dotted style is the one in which the border line consists of dots.

Below, you will find examples showcasing the styles we’ve just mentioned alongside their respective CSS code:

border-style: solid;
CSS
CSS border style: This is an image that shows a box with border style solid.
CSS border style: This is an image that shows a box with border style double.
border-style: double;
CSS
border-style: dashed;
CSS
CSS border style: This is an image that shows a box with border style dashed.
CSS border style: This is an image that shows a box with border style dotted.
border-style: dotted;
CSS

CSS border width – Focusing on precision

Now that you’ve seen the basic border stylings, it’s time to check out the border’s width property. By default, borders have 1px width. To change that, we must modify the border-width property according to our needs.

Before we continue, it’s important to give you some insights on an important property that directly affects border behaviors and is called box-sizing. Box sizing’s value is set, by default, to content-box . Because of that borders occupy additional space around the objects they surround.

In simple words, if I have a box with 300px width and 200px height and I want to add a 20px border to all sides, then I will end up having a bordered box with 340px width and 240px height. Let’s see how I came up with this result:

width:300px (box’s width) + 40px (20px border-left + 20px border-right) = 340px;

height:200px (box’s height) + 40px (20px border-top + 20px border-bottom) = 240px;

border-width: 20px;
CSS

🕵️‍♀️ By exploring the box-sizing CSS property, we can include borders within the box’s dimensions. If you’re interested in learning more about it check out my post. You will find detailed instructions and explanations on each box sizing method.

CSS border color – For vivid results

The next step is to understand how border color works. By default, borders are always rendered in black. This means that if we don’t specify a color our borders will automatically display in black.

By default, borders are always rendered in black

However, if we want a different color we have the freedom to choose any color we desire and simply assign it to the border-color property. Let’s see that in action:

border-color: blue;
CSS

Border colors can be described using various different value types. For instance, you can specify the color blue by using :

  • The word blue
  • The corresponding hex code #00F
  • The RGB value rgb(0, 0, 255)
  • The HSL value hsl(240, 100%, 50%)

A color 🌈 guide is also available to help expand your knowledge of colors.

Border shorthand for simplified stylings

border: border-width border-style border-color

There is a cool method for writing all the above border properties that prove to be highly useful. By choosing this approach, you can set multiple values simultaneously. This technique is a super efficient way to define all border properties in a quick and easy manner. It’s a total time and space saver! 😃

Instead of listing each property separately, you just add each property side by side in a single line:

Border-style css: This image shows that border-width, border-style and border-color can be declared only with the word border.
border: 10px dashed blue;
CSS
Border-style css: This image shows a box with a 10px dashed blue 4 sides border.

Cool right? 😎 ✨ Keep in mind that the order of the property doesn’t matter! We usually start with pixels and then add style and color, but it’s up to you the final decision!

CSS Border Styles for unique results


Additionally, we have the flexibility to selectively choose specific sides when defining our border styles. This allows us to create borders combined with different styling. In the following example, you can check out some of these combinations. But still, you are free to make your own! 😀

One side border

border-top: 10px double white;
CSS
Border styles css: This image shows a box with a 10px double white border-top.
Border styles css: This image shows a box with a 10px dashed purple border-right.
border-right: 10px dashed purple;
CSS
border-bottom: 10px solid white;
CSS
Border styles css: This image shows a box with a 10px solid white border-bottom.
Border styles css: This image shows a box with a 10px dotted purple border-left.
border-left: 10px dotted purple;
CSS

Multiple sides border

  border-top: 10px double white;
  border-right: none;
  border-bottom: 10px solid purple;
  border-left: none;
CSS
Border styles css: This image shows a box with a 10px double white border-top and a 10px solid purple border-bottom. Border-left and border-right have value none.
Border styles css: This image shows a box with a 10px double white border-top, a 10px solid purple border-bottom and a 10px dashed black border-right. Border-left has value none.
  border-top: 10px double white;
  border-right: 10px dashed black;
  border-bottom: 10px solid purple;
  border-left: none;
CSS
  border-top: 10px double white;
  border-right: 10px dashed black;
  border-bottom: 10px solid purple;
  border-left: 10px dotted blue;
CSS
Border styles css: This image shows a box with a 10px double white border-top, a 10px solid purple border-bottom, a 10px dashed black border-right and a 10px dotted blue border-left.
Border styles css: This image shows a box with a 10px solid purple border applied to all 4 sides.
  border-top: 10px solid purple;
  border-right: 10px solid purple;
  border-bottom: 10px solid purple;
  border-left: 10px solid purple;
  /* OR */
  border: 10px solid purple;
CSS

🔖 Keep in mind when working with the CSS border property that it is considered a good practice to set equal border widths for all sides. Being consistent helps by bringing a sense of balance and distraction-free results.
Furthermore, try to avoid mismatched styles and colors. Matching styles and colors lead to a smooth and cohesive look that’s easy on the eyes. Not to mention, it keeps your code cleaner 🎉 and easier to manage. 😀

DO’s

  border-top: 10px solid white;
  border-right: 10px dashed purple;
  border-bottom: 10px solid white;
  border-left: 10px dashed purple;
CSS
This image shows a box with a 10px solid white border top and bottom, while border right and left have 10px dashed purple. Also this image has a message inside it that says: 'DO'S"

DONT’s

This image shows a box with a 30px double red border-top, a 5px dashed green border-right, a 20px solid orande border-bottom,  and a 15px dotted blue border-left. Also this image has a message inside it that says: 'DON'TS"
border-top: 30px double red;
border-right: 5px dashed green;
border-bottom: 20px solid orange;
border-left: 15px dotted blue;
CSS

Create curved corners using border-radius

Last but not least we have the border-radius CSS property, which enables us to give our elements rounded corners. We can opt for uniform rounding or we can apply different degrees of rounding to each corner. In addition to that, it’s useful to know that when we are working with different radius per corner, we can also combine px with %.

When we are setting different border-radius per corner, we are free to combine px with %.

Same corners

border-radius: 50%;
CSS
This image shows a box with border-radius: 50% 25%; Top-left and bottom-right corners have radius 50% while top-right and bottom-left corners have radius 25%.
This image shows a box with border-radius: 40% 20px 30%; Top-left corner have radius 40%, top-right and bottom-left corners have radius 20px while bottom-right corners have radius 30%.
border-radius: 50px;
CSS

Different corners

/* top-left & bottom-right | top-right & bottom-left */
border-radius: 50% 25%;
CSS
This image shows a box with border-radius: 50% 25%; Top-left and bottom-right corners have radius 50% while top-right and bottom-left corners have radius 25%.
This image shows a box with border-radius: 40% 20px 30%; Top-left corner have radius 40%, top-right and bottom-left corners have radius 20px while bottom-right corners have radius 30%.
/* top-left | top-right & bottom-left | bottom-right */
border-radius: 40% 20px 30%;
CSS
/* top-left | top-right | bottom-right | bottom-left */
border-radius: 40% 10% 50px 20px;
CSS
This image shows a box with border-radius: 40% 10% 50px 20px. Top-left corner has radius 40%, top-right corner has radius 10%, bottom-right corner has radius 50px and bottom-left corner has radius 20px.

🌼 Hope you found my post interesting and helpful. Thanks for being here! 🌼

DigitalOcean Referral Badge
guest
0 Comments
Inline Feedbacks
View all comments

Continue reading

Front, Programming

What You Need to Know About CSS nth child Selector – A Practical Guide

Front, Programming

Learn How to Select Only the CSS First Child

Front, Programming

Grayscale Backdrop Filter: A Useful Tool To Make Grayish Backgrounds

Front, Programming

How To Calculate CSS Line Height

Front, Programming

Coding Made Easy With CSS Selectors: An Ultimate Guide

Front, Programming

Most Useful HTML Elements for Maximizing Better Results

Front, Programming

CSS Box Sizing – Better Implementations, Less Headaches

Front, Programming

What Is the CSS Box Model in Simple Terms

Front, Programming

CSS Text Decoration In Action: A Powerful Guide

Front, Programming

HTML Formatting Elements Made Simple: With Easy And Practical Examples

Front, Programming

How To Work With CSS Syntax: The Correct Way!

Front, Programming

What You Need to Know About CSS Color Methods

Subscribe to our newsletter

Dive into the Fun Side of Tech! Posts, News, and More Delivered to Your Inbox!

Intuit Mailchimp