border-inline-end-style

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since January 2020.

Thuộc tính border-inline-end-style CSS xác định kiểu của đường viền cuối nội tuyến logic của phần tử, ánh xạ tới kiểu đường viền vật lý tùy thuộc vào chế độ viết, hướng và hướng văn bản của phần tử. Nó tương ứng với border-top-style, border-right-style, border-bottom-style, hoặc border-left-style tùy thuộc vào các giá trị được xác định cho writing-mode, directiontext-orientation.

Try it

border-inline-end-style: dotted;
writing-mode: horizontal-tb;
border-inline-end-style: dotted;
writing-mode: vertical-rl;
border-inline-end-style: groove;
writing-mode: horizontal-tb;
direction: rtl;
<section class="default-example" id="default-example">
  <div class="transition-all" id="example-element">
    This is a box with a border around it.
  </div>
</section>
#example-element {
  background-color: #eeeeee;
  color: black;
  border: 0.75em solid;
  padding: 0.75em;
  width: 80%;
  height: 100px;
  unicode-bidi: bidi-override;
}

Cú pháp

css
/* Giá trị <'border-style'> */
border-inline-end-style: dashed;
border-inline-end-style: dotted;
border-inline-end-style: groove;

/* Giá trị toàn cục */
border-inline-end-style: inherit;
border-inline-end-style: initial;
border-inline-end-style: revert;
border-inline-end-style: revert-layer;
border-inline-end-style: unset;

Các thuộc tính liên quan là border-block-start-style, border-block-end-styleborder-inline-start-style, xác định các kiểu đường viền khác của phần tử.

Giá trị

<'border-style'>

Kiểu đường của đường viền. Xem border-style.

Định nghĩa hình thức

Initial valuenone
Applies toall elements
Inheritedno
Computed valueas specified
Animation typediscrete

Cú pháp hình thức

border-inline-end-style = 
<line-style>

<line-style> =
none |
hidden |
dotted |
dashed |
solid |
double |
groove |
ridge |
inset |
outset

Ví dụ

Đặt kiểu inline-end

HTML

html
<div>
  <p class="exampleText">Example text</p>
</div>

CSS

css
div {
  background-color: yellow;
  width: 120px;
  height: 120px;
}

.exampleText {
  writing-mode: vertical-lr;
  border: 5px solid blue;
  border-inline-end-style: dashed;
}

Kết quả

Thông số kỹ thuật

Specification
CSS Logical Properties and Values Module Level 1
# border-style

Tương thích trình duyệt

Xem thêm