CSS | border-inline-end-style Property

Thuộc tính border-inline-end-style trong CSS dùng để xác định các giá trị riêng lẻ. Nó được dùng để xác định các thuộc tính logical inline-end border. Thuộc tính này thiết lập border-style ở cuối border của phần tử xác định. Cú pháp:
border-inline-end-style: border-style;
Giá trị thuộc tính:
  • border-style: Thuộc tính này giữ style của border.
Các ví dụ dưới đây minh họa thuộc tính border-inline-end-style trong CSS: Ví dụ 1: html
<!DOCTYPE html>
<html>
 
<head>
    <title>CSS | border-inline-end-style Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
        .one {
            border: 5px solid gray;
            border-inline-end-style: dotted;
            background-color: purple;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-inline-end-style Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>
 
</html>
Đầu ra: css-border-inline-end-style-property Ví dụ 2: html
<!DOCTYPE html>
<html>
 
<head>
    <title>CSS | border-inline-end-style Property</title>
    <style>
        h1 {
            color: green;
        }
         
        div {
            background-color: yellow;
            width: 220px;
            height: 40px;
        }
        .one {
            border: 5px solid black;
            border-inline-end-style: dashed;
            background-color: purple;
        }
    </style>
</head>
 
<body>
    <center>
        <h1>Geeksforgeeks</h1>
        <b>CSS | border-inline-end-style Property</b>
        <br><br>
        <div class="one">A Computer Science Portal</div>
    </center>
</body>
 
</html>
Đầu ra: css-border-inline-end-style-property Các trình duyệt được hỗ trợ: Các trình duyệt được hỗ trợ bởi thuộc tính border-inline-end-style được liệt kê dưới đây:
  • Firefox
  • Opera
  • Edge
Tham khảo: https://developer.mozilla.org/en-US/docs/Web/CSS/border-inline-end-color
Last Updated : 20/07/2025