CSS | border-inline-start Property

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