CSS | border-inline-color Property

Thuộc tính border-inline-color trong CSS được dùng để thiết lập màu viền. Giá trị này thiết lập màu cho cạnh trên và cạnh dưới của phần tử. Cú pháp:
border-inline-color: color;
Giá trị thuộc tính:
  • color: Thuộc tính này xác định màu của đường viền.
Các ví dụ sau minh họa thuộc tính border-inline-color trong CSS: Ví dụ 1: html
<!DOCTYPE html>
<html>

<head>
    <title>CSS | border-inline-color Property</title>
    <style>
        h1 {
            color: green;
        }
        
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
        
        .one {
            border: 5px solid cyan;
            border-inline-color: yellow;
            background-color: purple;
        }
    </style>
</head>

<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-inline-color Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>

</html>                    
Đầu ra: css-border-inline-color-property Ví dụ 2: html
<!DOCTYPE html>
<html>

<head>
    <title>CSS | border-inline-color Property</title>
    <style>
        h1 {
            color: green;
        }
        
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
        
        .one {
            border: 5px dotted cyan;
            border-inline-color: yellow;
            background-color: purple;
        }
    </style>
</head>

<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-inline-color Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>

</html>                    
Đầu ra: css-border-inline-color-property Tham khảo: https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-color#:~:text=The%20border-inline-color%20CSS,%2C%20directionality%2C%20and%20text%20orientation. Các trình duyệt được hỗ trợ: Dưới đây là danh sách trình duyệt hỗ trợ thuộc tính border-inline-color:
  • Firefox
  • Opera
  • Edge

Last Updated : 20/07/2025