此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。
padding-block-start
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since 2020年1月.
CSS 属性padding-block-start 定义了元素的逻辑块首内边距,并根据元素的书写模式、行内方向和文本朝向对应至实体内边距。
In this article
尝试一下
padding-block-start: 20px;writing-mode: horizontal-tb;padding-block-start: 20px;writing-mode: vertical-rl;padding-block-start: 5em;writing-mode: horizontal-tb;padding-block-start: 5em;writing-mode: vertical-lr;<section> <div> <div> Far out in the uncharted backwaters of the unfashionable end of the western spiral arm of the Galaxy lies a small unregarded yellow sun. </div> </div></section>#example-element { border: 10px solid #ffc129; overflow: hidden; text-align: left;}.box { border: dashed 1px; unicode-bidi: bidi-override;}语法
css
/* <length> 值 */padding-block-start: 10px; /* 绝对长度 */padding-block-start: 1em; /* 相对于文本尺寸的长度 *//* <percentage> 值 */padding-block-start: 5%; /* 相对于包含区块宽度的内边距 *//* 全局值 */padding-block-start: inherit;padding-block-start: initial;padding-block-start: revert;padding-block-start: revert-layer;padding-block-start: unset;取值
<length>以固定值指定的内边距尺寸。必须非负。
<percentage>以百分比指定的内边距尺寸,参照包含区块的行向尺寸(即横向语言中的宽度,由
writing-mode所定义)。必须非负。
描述
虽然规范定义padding-block-start 属性的取值与padding-top 属性相同,但是此属性所对应的实体属性取决于writing-mode、direction 和text-orientation 所设置的值。因此这一属性可能对应于padding-bottom、padding-right 或padding-left。
与此相关的属性有padding-block-end、padding-inline-start 和padding-inline-end,这些属性定义了元素的其他内边距。
形式定义
形式语法
padding-block-start =
<'padding-top'>
<padding-top> =
<length-percentage [0,∞]>
<length-percentage> =
<length>|
<percentage>
示例
>为竖排文本设置块首内边距
HTML
html
<div> <p>示例文本</p></div>CSS
css
div { background-color: yellow; width: 120px; height: 120px;}.exampleText { writing-mode: vertical-lr; padding-block-start: 20px; background-color: #c8c800;}结果
规范
| Specification |
|---|
| CSS Logical Properties and Values Level 1> # padding-properties> |