余量-直列端 | margin-inline-end
margin-inline-end
这是一种实验技术
由于该技术的规格不稳定,请查看各种浏览器的兼容性表格以供使用。还要注意,随着规范的变化,实验技术的语法和行为在未来版本的浏览器中可能会发生变化。
margin-inline-end
映射到取决于元件的写入模式,方向性,和文本方向的物理余量的逻辑在线端部边缘。换句话说,它对应于margin-top
,margin-right
,margin-bottom
或margin-left
属性根据为定义的值writing-mode
,direction
和text-orientation
。
/* <length> values */
margin-inline-end: 10px; /* An absolute length */
margin-inline-end: 1em; /* relative to the text size */
margin-inline-end: 5%; /* relative to the nearest block container's width */
/* Keyword values */
margin-inline-end: auto;
/* Global values */
margin-inline-end: inherit;
margin-inline-end: initial;
margin-inline-end: unset;
它与margin-block-start
,margin-block-end
,和margin-inline-start
,它定义元素的其他边距。
初始值 | 0 |
---|---|
应用于 | same as margin |
是否继承 | no |
百分比 | depends on layout model |
适用媒体 | visual |
计算值 | if specified as a length, the corresponding absolute length; if specified as a percentage, the specified value; otherwise, auto |
Animation type | discrete |
规范顺序 | the unique non-ambiguous order defined by the formal grammar |
句法
价值
margin-inline-end
属性采用与该margin-left
属性相同的值
形式语法
<'margin-left'>
例
HTML
<div>
<p class="exampleText">Example text</p>
</div>
CSS
div {
background-color: yellow;
width: 120px;
height: 120px;
}
.exampleText {
writing-mode: vertical-lr;
margin-inline-end: 20px;
background-color: #c8c800;
}
规格
Specification | Status | Comment |
---|---|---|
CSS Logical Properties Level 1The definition of 'margin-inline-end' in that specification. | Editor's Draft | Initial definition |
浏览器兼容性
Feature | Chrome | Firefox (Gecko) | Internet Explorer | Opera | Safari (WebKit) |
---|---|---|---|---|---|
Basic support | No support3 | 41.0 (41.0)1 | No support | No support | No support3 |
Feature | Android | Firefox Mobile (Gecko) | IE Phone | Opera Mobile | Safari Mobile |
---|---|---|---|---|---|
Basic support | No support | 41.0 (41.0)1 | No support | No support | No support |