CSS | border-inline-style Property

Thuộc tính border-inline-style property là thuộc tính tích hợp sẵn trong CSS. Nó dùng để đặt giá trị cho thuộc tính logical block inline-border-style. Tất cả được đặt ở một nơi duy nhất trong bảng стилів. Thuộc tính này đặt kiểu đường viền trên(trái) và dưới(phải) của phần tử. Cú pháp:
border-inline-style: style;
Giá trị thuộc tính:
  • style: Thuộc tính này giữ kiểu của đường viền, ví dụ: dashed, border, dotted,...
Các ví dụ dưới đây minh họa thuộc tính border-inline-style property trong CSS: Ví dụ 1: html
<!DOCTYPE html>
<html>

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

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

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

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

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

</html>                    
Đầu ra: css-border-inline-style-property Tham khảo: https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-style#:~:text=The%20border-inline-style%20CSS,%2C%20directionality%2C%20and%20text%20orientation. Trình duyệt được hỗ trợ: Các trình duyệt hỗ trợ border-inline-style property được liệt kê dưới đây:
  • Firefox
  • Opera
  • Edge

Last Updated : 21/07/2025