border-inline-start-width - CSS: Cascading Style Sheets 编辑
The border-inline-start-width
CSS property defines the width of the logical inline-start border of an element, which maps to a physical border width depending on the element's writing mode, directionality, and text orientation. It corresponds to the border-top-width
, border-right-width
, border-bottom-width
, or border-left-width
property depending on the values defined for writing-mode
, direction
, and text-orientation
.
The source for this interactive example is stored in a GitHub repository. If you'd like to contribute to the interactive examples project, please clone https://github.com/mdn/interactive-examples and send us a pull request.
Syntax
/* <'border-width'> values */
border-inline-start-width: 5px;
border-inline-start-width: thick;
Related properties are border-block-start-width
, border-block-end-width
, and border-inline-end-width
, which define the other border widths of the element.
Values
<'border-width'>
- The width of the border. See
border-width
.
Formal definition
Initial value | medium |
---|---|
Applies to | all elements |
Inherited | no |
Percentages | logical-width of containing block |
Computed value | absolute length; 0 if the border style is none or hidden |
Animation type | a length |
Formal syntax
<'border-top-width'>
Examples
HTML
<div>
<p class="exampleText">Example text</p>
</div>
CSS
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
border: 1px solid blue;
border-inline-start-width: 5px;
}
Specifications
Specification | Status | Comment |
---|---|---|
CSS Logical Properties and Values Level 1 The definition of 'border-inline-start-width' in that specification. | Editor's Draft | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
- This property maps to one of the physical border properties:
border-top-width
,border-right-width
,border-bottom-width
, andborder-left-width
writing-mode
,direction
,text-orientation
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论