Tillitsdone
down Scroll to discover

CSS Border-Color Enhance Border Appeal

Learn how to use CSS border-color to enhance the visual appeal of your web designs.

Explore available options like hex codes, RGB, RGBA, HSL, and HSLA.
thumbnail

Introduction

The border-color CSS property is a convenient way to set the color of an element’s border. It’s a shorthand property that lets you define the border color for all sides of an element or each side individually. This makes it a handy tool for web design, allowing you to enhance the visual appeal of your website. You can use various color values with border-color, such as hex codes, RGB, RGBA, HSL, HSLA, and color names, giving you lots of flexibility.

Specification

The border-color property is defined in the CSS Backgrounds and Borders Module Level 3, which outlines how to handle backgrounds and borders in CSS. Additionally, the CSS Logical Properties and Values Level 1 specification details logical shorthand keywords used in CSS.

Description

The border-color property sets the color of the border around an HTML element. It’s a shorthand property that lets you specify the color for all four sides or individually for each side. This flexibility makes it a versatile tool for customizing the appearance of elements in your web design.

You can use various color values with border-color, including:

  • Hex codes (e.g., #ff0000)
  • RGB values (e.g., rgb(255, 0, 0))
  • RGBA values (e.g., rgba(255, 0, 0, 0.5))
  • HSL values (e.g., hsl(0, 100%, 50%))
  • HSLA values (e.g., hsla(0, 100%, 50%, 0.5))
  • Color names (e.g., red)

Individual Side Properties

While border-color is a shorthand, you can also set the border color for each side individually using these properties:

  1. border-top-color: Sets the color of the top border.
  2. border-right-color: Sets the color of the right border.
  3. border-bottom-color: Sets the color of the bottom border.
  4. border-left-color: Sets the color of the left border.

Additional properties for different writing modes include:

  1. border-block-start-color: Sets the color of the border at the start of the block.
  2. border-block-end-color: Sets the color of the border at the end of the block.
  3. border-inline-start-color: Sets the color of the border at the start of the inline direction.
  4. border-inline-end-color: Sets the color of the border at the end of the inline direction.

Syntax

The border-color property can be specified with one, two, three, or four values. Each value represents the color of a specific side or sides of the element’s border.

border-color: <color>;

Values

  • Single Value: Applies the same color to all four sides.
    border-color: red;
  • Two Values: The first color applies to the top and bottom borders, and the second color applies to the left and right borders.
    border-color: red blue;
  • Three Values: The first color applies to the top border, the second color applies to the left and right borders, and the third color applies to the bottom border.
    border-color: red blue green;
  • Four Values: The colors apply to the top, right, bottom, and left borders in that order (clockwise).
    border-color: red blue green yellow;

Global Values

The border-color property also supports global CSS values:

  • inherit: Inherits the border color from the parent element.
    border-color: inherit;
  • initial: Sets the border color to its initial value (currentcolor).
    border-color: initial;
  • revert: Resets the border color to the value defined by the user-agent stylesheet.
    border-color: revert;
  • revert-layer: Resets the border color to the value defined by the user-agent stylesheet for the specific layer.
    border-color: revert-layer;
  • unset: Resets the border color to its inherited value if it inherits, or to its initial value if it does not inherit.
    border-color: unset;

Example

Here’s an example demonstrating various syntax options for the border-color property:

/* Single value */
.element-1 {
border-color: red;
}
/* Two values */
.element-2 {
border-color: red blue;
}
/* Three values */
.element-3 {
border-color: red blue green;
}
/* Four values */
.element-4 {
border-color: red blue green yellow;
}

Formal Definition

The border-color property is formally defined as a shorthand property that sets the color of an element’s border.

Formal Definition Breakdown

  • Initial Value: The initial value for border-color is currentcolor, which means it defaults to the current color of the text.
  • Applies To: The border-color property applies to all elements and also to the ::first-letter pseudo-element.
  • Inherited: No, the border-color property is not inherited from parent elements.
  • Computed Value: The computed value for border-color is the computed color for each of the border sides (border-top-color, border-right-color, border-bottom-color, border-left-color).
  • Animation Type: The border-color property can be animated as a color, which means it interpolates on each of its red, green, blue components, each handled as a real, floating-point number. Note that interpolation of colors happens in the alpha-premultiplied sRGBA color space to prevent unexpected grey colors from appearing.

Formal Syntax

The formal syntax for the border-color property is defined as follows:

border-color = <color> | <image-1D> {1,4}
<image-1D> = stripes( <color-stripe># )
<color-stripe> = <color> && [ <length-percentage> | <flex> ]?
<length-percentage> = <length> | <percentage>

Example

Here’s an example demonstrating the formal definition and syntax of the border-color property:

/* Single value */
.element-1 {
border-color: red;
}
/* Two values */
.element-2 {
border-color: red blue;
}
/* Three values */
.element-3 {
border-color: red blue green;
}
/* Four values */
.element-4 {
border-color: red blue green yellow;
}
/* Using global values */
.element-5 {
border-color: inherit;
}
.element-6 {
border-color: initial;
}
.element-7 {
border-color: revert;
}
.element-8 {
border-color: revert-layer;
}
.element-9 {
border-color: unset;
}

Example

Here’s an example demonstrating the use of different values for the border-color property:

/* Using a color name */
.element-1 {
border-color: red;
}
/* Using a hexadecimal notation */
.element-2 {
border-color: #ff0000;
}
/* Using RGB */
.element-3 {
border-color: rgb(255, 0, 0);
}
/* Using RGBA */
.element-4 {
border-color: rgba(255, 0, 0, 0.5);
}
/* Using HSL */
.element-5 {
border-color: hsl(0, 100%, 50%);
}
/* Using HSLA */
.element-6 {
border-color: hsla(0, 100%, 50%, 0.5);
}
/* Using global values */
.element-7 {
border-color: inherit;
}
.element-8 {
border-color: initial;
}
.element-9 {
border-color: revert;
}
.element-10 {
border-color: revert-layer;
}
.element-11 {
border-color: unset;
}

Practical Examples

HTML

<div id="justone">
<p><code>border-color: red;</code> is equivalent to</p>
<ul>
<li><code>border-top-color: red;</code></li>
<li><code>border-right-color: red;</code></li>
<li><code>border-bottom-color: red;</code></li>
<li><code>border-left-color: red;</code></li>
</ul>
</div>
<div id="horzvert">
<p><code>border-color: gold red;</code> is equivalent to</p>
<ul>
<li><code>border-top-color: gold;</code></li>
<li><code>border-right-color: red;</code></li>
<li><code>border-bottom-color: gold;</code></li>
<li><code>border-left-color: red;</code></li>
</ul>
</div>
<div id="topvertbott">
<p><code>border-color: red cyan gold;</code> is equivalent to</p>
<ul>
<li><code>border-top-color: red;</code></li>
<li><code>border-right-color: cyan;</code></li>
<li><code>border-bottom-color: gold;</code></li>
<li><code>border-left-color: cyan;</code></li>
</ul>
</div>
<div id="trbl">
<p><code>border-color: red cyan black gold;</code> is equivalent to</p>
<ul>
<li><code>border-top-color: red;</code></li>
<li><code>border-right-color: cyan;</code></li>
<li><code>border-bottom-color: black;</code></li>
<li><code>border-left-color: gold;</code></li>
</ul>
</div>

CSS

#justone {
border-color: red;
}
#horzvert {
border-color: gold red;
}
#topvertbott {
border-color: red cyan gold;
}
#trbl {
border-color: red cyan black gold;
}
/* Set width and style for all divs */
div {
border: solid 0.3em;
width: auto;
margin: 0.5em;
padding: 0.5em;
}
ul {
margin: 0;
list-style: none;
}

Individual Side Properties

HTML

<div id="individual-sides">
<p><code>border-top-color: blue;</code><br>
<code>border-right-color: green;</code><br>
<code>border-bottom-color: red;</code><br>
<code>border-left-color: yellow;</code></p>
</div>

CSS

#individual-sides {
border-top-color: blue;
border-right-color: green;
border-bottom-color: red;
border-left-color: yellow;
border-style: solid;
border-width: 0.3em;
width: auto;
margin: 0.5em;
padding: 0.5em;
}

Using Different Color Values

HTML

<div id="hex-color">
<p><code>border-color: #ff0000;</code></p>
</div>
<div id="rgb-color">
<p><code>border-color: rgb(0, 255, 0);</code></p>
</div>
<div id="rgba-color">
<p><code>border-color: rgba(0, 0, 255, 0.5);</code></p>
</div>
<div id="hsl-color">
<p><code>border-color: hsl(0, 100%, 50%);</code></p>
</div>
<div id="hsla-color">
<p><code>border-color: hsla(0, 100%, 50%, 0.5);</code></p>
</div>
<div id="color-name">
<p><code>border-color: red;</code></p>
</div>

CSS

#hex-color {
border-color: #ff0000;
}
#rgb-color {
border-color: rgb(0, 255, 0);
}
#rgba-color {
border-color: rgba(0, 0, 255, 0.5);
}
#hsl-color {
border-color: hsl(0, 100%, 50%);
}
#hsla-color {
border-color: hsla(0, 100%, 50%, 0.5);
}
#color-name {
border-color: red;
}
/* Set width and style for all divs */
div {
border: solid 0.3em;
width: auto;
margin: 0.5em;
padding: 0.5em;
}
  • border: A shorthand property that sets the width, style, and color of an element’s border in one declaration.
  • border-top-color: Sets the color of the top border.
  • border-right-color: Sets the color of the right border.
  • border-bottom-color: Sets the color of the bottom border.
  • border-left-color: Sets the color of the left border.
  • border-width: Specifies the width of the border.
  • border-style: Specifies the style of the border, such as solid, dashed, or dotted.
  • border-radius: Defines the radius of the element’s corners, creating rounded corners.

Additional Border Properties

  • border-image: Allows you to use an image as the border around an element.
  • border-image-source: Specifies the image to be used as the border.
  • border-image-slice: Divides the image into regions.
  • border-image-width: Specifies the width of the border image.
  • border-image-outset: Defines the amount by which the border image area extends beyond the border box.
  • border-image-repeat: Specifies how the border image should be repeated.
  • color: Sets the color of the text.
  • background-color: Sets the background color of an element.
  • outline-color: Sets the color of the outline around an element.
  • text-decoration-color: Sets the color of the text decoration (e.g., underline, overline).
  • text-emphasis-color: Sets the color of the emphasis mark.
  • text-shadow: Adds shadow to the text.
  • caret-color: Sets the color of the text input cursor.
  • column-rule-color: Sets the color of the rule between columns.

Additional Resources

Exploring these properties and resources will help you create visually appealing and functional web designs. Whether you’re working on a simple project or a complex website, these tools will help you achieve your design goals efficiently.

icons/logo-tid.svg Latest Blogs
Discover our top articles, selected to support the growth of your business.
https://imgproxy-landing-page.tillitsdone.com/sig/rs:fit:1200:630/plain/https%3A%2F%2Fcms-r2.tillitsdone.com%2Fwp-content-prod%2Fuploads%2F2025%2F10%2FTill-its-done_SEO_R42_Sep_1440x697.jpg@webp Next.js สอน 14 ขั้นตอนเบื้องต้น: สร้างโปรเจกต์แรกใน 30 นาที เริ่มต้นกับ Next.js ใน 14 ขั้นตอนเพียงแค่ 30 นาที พร้อม SSR/SSG และ API Routes ด้วยตัวอย่างโค้ดง่าย ๆ อ่านต่อเพื่อสร้างโปรเจ็กต์แรกได้ทันทีที่นี่ https://imgproxy-landing-page.tillitsdone.com/sig/rs:fit:1200:630/plain/https%3A%2F%2Fcms-r2.tillitsdone.com%2Fwp-content-prod%2Fuploads%2F2025%2F10%2FTill-its-done_SEO_R41_Sep_1440x697.jpg@webp วิธีสมัคร Apple Developer Account เพื่อนำแอปขึ้น App Store ทีละขั้นตอน อยากปล่อยแอปบน App Store ระดับโลก มาอ่านคู่มือสมัคร Apple Developer Account พร้อมเคล็ดลับ TestFlight และวิธีอัปโหลดที่ง่ายในบทความเดียวนี้ได้เลย https://imgproxy-landing-page.tillitsdone.com/sig/rs:fit:1200:630/plain/https%3A%2F%2Fcms-r2.tillitsdone.com%2Fwp-content-prod%2Fuploads%2F2025%2F10%2FTill-its-done_SEO_R40_Sep_1440x697.jpg@webp Web Development Tools ที่ต้องมีติดเครื่อง ครบทุกสายงาน Frontend, Backend, DevOps รวมเครื่องมือพัฒนาเว็บครบทุกสายงาน ไม่ว่าจะเป็น Frontend, Backend หรือ DevOps ที่จะพาคุณลุยโปรเจ็กต์ได้ลื่นขึ้นในทุกขั้น https://imgproxy-landing-page.tillitsdone.com/sig/rs:fit:1200:630/plain/https%3A%2F%2Fcms-r2.tillitsdone.com%2Fwp-content-prod%2Fuploads%2F2025%2F10%2FTill-its-done_SEO_R38_Sep_1440x697.jpg@webp TypeScript Interface คืออะไร? อธิบายพร้อมวิธีใช้และข้อแตกต่างจาก Type เรียนรู้วิธีใช้ TypeScript Interface เพื่อสร้างโครงสร้างข้อมูลที่ปลอดภัยและเข้าใจง่าย พร้อมเปรียบเทียบข้อดีข้อแตกต่างกับ Type ที่คุณต้องรู้ ถูกรวมเอาไว้ในบทความนี้แล้ว https://imgproxy-landing-page.tillitsdone.com/sig/rs:fit:1200:630/plain/https%3A%2F%2Fcms-r2.tillitsdone.com%2Fwp-content-prod%2Fuploads%2F2025%2F09%2FTill-its-done_SEO_R36_Sep_1440x697.jpg@webp Material-UI (MUI) คืออะไร อยากสร้าง UI สวยงามและเป็นมืออาชีพในเวลาอันรวดเร็วใช่ไหม มาทำความรู้จักกับ Material-UI (MUI) ที่ช่วยให้คุณพัฒนาแอปพลิเคชันบน React ได้ง่ายและดูดีในทุกอุปกรณ์ https://imgproxy-landing-page.tillitsdone.com/sig/rs:fit:1200:630/plain/https%3A%2F%2Fcms-r2.tillitsdone.com%2Fwp-content-prod%2Fuploads%2F2025%2F09%2FTill-its-done_SEO_R27_Sep_1440x697.jpg@webp เปรียบเทียบ 3 วิธีติดตั้ง install node js บน Ubuntu: NVM vs NodeSource vs Official Repo แบบไหนดีที่สุด? เรียนรู้วิธีติดตั้ง Node.js บน Ubuntu ด้วย NVM, NodeSource หรือ Official Repo เลือกวิธีที่เหมาะกับความต้องการของคุณ พร้อมเปรียบเทียบ เพื่อการพัฒนาที่มีประสิทธิภาพ!
icons/logo-tid.svg

Talk with CEO

Ready to bring your web/app to life or boost your team with expert Thai developers?
Contact us today to discuss your needs, and let’s create tailored solutions to achieve your goals. We’re here to help at every step!
🖐️ Contact us
down Explore our best articles, cover a wide variety of technologies
Our knowledge base
196 Articles
Explore right
icons/logo-react.svg ReactJs
Popular JavaScript library for building user interfaces with a component-based architecture.
160 Articles
Explore right
icons/flutter.svg Flutter
UI toolkit for building natively compiled applications for mobile, web, and desktop from a single codebase.
144 Articles
Explore right
icons/logo-nodejs.svg Nodejs
JavaScript runtime for building scalable, high-performance server-side applications.
58 Articles
Explore right
icons/next-js.svg Nextjs
React framework enabling server-side rendering and static site generation for optimized performance.
38 Articles
Explore right
icons/tailwind.svg TailwindCSS
Utility-first CSS framework for rapid UI development.
36 Articles
Explore right
icons/code-outline.svg Typescript
Superset of JavaScript adding static types for improved code quality and maintainability.
126 Articles
Explore right
icons/code-outline.svg Golang
Programming language known for its simplicity, concurrency model, and performance.
67 Articles
Explore right
icons/code-outline.svg AstroJs
Astro is an all-in-one web framework. It includes everything you need to create a website, built-in.
38 Articles
Explore right
icons/code-outline.svg Jest
Versatile testing framework for JavaScript applications supporting various test types.
15 Articles
Explore right
icons/code-outline.svg Website development th
11 Articles
Explore right
icons/code-outline.svg Mobile application th
5 Articles
Explore right
icons/code-outline.svg Reactjs th
4 Articles
Explore right
icons/code-outline.svg Nextjs th
3 Articles
Explore right
icons/code-outline.svg Flutter th
1 Articles
Explore right
icons/code-outline.svg Software house th
1 Articles
Explore right
icons/code-outline.svg Nodejs th
1 Articles
Explore right
icons/code-outline.svg Typescript th
337 Articles
Explore right
icons/css-4.svg CSS
CSS3 is the latest version of Cascading Style Sheets, offering advanced styling features like animations, transitions, shadows, gradients, and responsive design.
Let's keep in Touch
Thank you for your interest in Tillitsdone! Whether you have a question about our services, want to discuss a potential project, or simply want to say hello, we're here and ready to assist you.
We'll be right here with you every step of the way.
Contact Information
rick@tillitsdone.com+66824564755
Find All the Ways to Get in Touch with Tillitsdone - We're Just a Click, Call, or Message Away. We'll Be Right Here, Ready to Respond and Start a Conversation About Your Needs.
Address
9 Phahonyothin Rd, Khlong Nueng, Khlong Luang District, Pathum Thani, Bangkok Thailand
Visit Tillitsdone at Our Physical Location - We'd Love to Welcome You to Our Creative Space. We'll Be Right Here, Ready to Show You Around and Discuss Your Ideas in Person.
Social media
FacebookInstagramLinkedIn
Connect with Tillitsdone on Various Social Platforms - Stay Updated and Engage with Our Latest Projects and Insights. We'll Be Right Here, Sharing Our Journey and Ready to Interact with You.
We anticipate your communication and look forward to discussing how we can contribute to your business's success.
We'll be here, prepared to commence this promising collaboration.
Frequently Asked Questions
Explore frequently asked questions about our products and services.
Whether you're curious about features, warranties, or shopping policies, we provide comprehensive answers to assist you.