CSS |填充-内联-开始属性
原文:https://www . geesforgeks . org/CSS-padding-inline-start-property/
CSS 中的填充内联开始属性用于定义元素的逻辑块开始填充。此属性有助于根据元素的书写模式、方向和文本方向放置填充。 语法:
padding-inline-start: length|percentage|auto|inherit|initial|unset;
房产价值:
- 长度:设置 px、cm、pt 等定义的固定值。也允许负值。它的默认值是 0px。
- 百分比:与长度相同,但填充是根据窗口大小的百分比设置的。
- auto: 当浏览器确定填充-内联-开始属性大小时使用。
- initial: 用于将 padding-inline-start 属性的值设置为默认值。
- inherit: 当希望元素从其父元素继承 padding-inline-start 属性时使用。
- 取消设置:用于取消设置默认填充-内联-开始属性。
以下示例说明了 CSS 中的填充-内联-开始属性: 示例 1:
超文本标记语言
<!DOCTYPE html>
<html>
<head>
<title>CSS | padding-inline-start Property</title>
<style>
h1 {
color: green;
}
div {
background-color: yellow;
width: 110px;
height: 80px;
}
.two {
padding-inline-start: 40px;
background-color: purple;
}
</style>
</head>
<body>
<center>
<h1>Geeksforgeeks</h1>
<b>CSS | padding-inline-start Property</b>
<br><br>
<div class="one">A Computer</div>
<div class="two">Science Portal</div>
<div class="three">For Geeks</div>
</center>
</body>
</html>
输出:
例 2:
超文本标记语言
<!DOCTYPE html>
<html>
<head>
<title>CSS | padding-inline-start Property</title>
<style>
h1 {
color: green;
}
div {
background-color: yellow;
width: 110px;
height: 80px;
}
.two {
padding-inline-start: 20px;
writing-mode: vertical-lr;
background-color: purple;
}
</style>
</head>
<body>
<center>
<h1>Geeksforgeeks</h1>
<b>CSS | padding-inline-start Property</b>
<br><br>
<div class="one">A Computer</div>
<div class="two">Science Portal</div>
<div class="three">For Geeks</div>
</center>
</body>
</html>
输出:
支持的浏览器:由填充-内联-开始属性支持的浏览器如下:
- 火狐浏览器
- 谷歌 Chrome
- 边缘
- 歌剧
参考:https://developer . Mozilla . org/en-US/docs/Web/CSS/padding-inline-start
版权属于:月萌API www.moonapi.com,转载请注明出处