CSS | border-inline-end-color Property

Thuộc tính border-inline-end-color trong CSS được dùng để xác định giá trị màu đường viền. Nó chỉ định màu sắc cho cạnh dưới của phần tử được định nghĩa đường viền. Syntax:
border-inline-end-color: border-color;
Property values:
  • border-color: Thuộc tính này giữ màu của đường viền.
Các ví dụ sau minh họa thuộc tính border-inline-end-color property trong CSS: Example 1: html
<!DOCTYPE html>
<html>
 
<head>
    <title>CSS | border-inline-end-color Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
        .one {
            border: 5px solid gray;
            border-inline-end-color: yellow;
            background-color: purple;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-inline-end-color Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>
 
</html>
Output: css-border-inline-end-color-property Example 2: html
<!DOCTYPE html>
<html>
 
<head>
    <title>CSS | border-inline-end-color Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
        .one {
            border: 5px solid black;
            border-inline-end-color: green;
            background-color: purple;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-inline-end-color Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>
 
</html>
Output: css-border-inline-end-color-property Supported Browsers: Các trình duyệt được hỗ trợ bởi border-inline-end-color property được liệt kê dưới đây:
  • Firefox
  • Opera
  • Edge
Reference: https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-color
Last Updated : 20/07/2025