87 次浏览
使用 grid-auto-rows 属性设置行的尺寸。示例您可以尝试运行以下代码来实现 grid-auto-rows 属性 - 在线演示 .container { display: grid; grid-auto-rows: 50px; grid-gap: 10px; background-color: red; padding: 10px; } .container>div { background-color: yellow; text-align: center; padding:10px 0; font-size: 20px; } 1 2 3 4 5 6
53 次浏览
使用 CSS grid-row-start 属性设置 grid-items 的起始位置。您可以尝试运行以下代码来实现 grid-row-start 属性示例在线演示 .container { display: grid; grid-auto-rows: 50px; grid-gap: 10px; background-color: red; padding: 10px; } .container>div { background-color: yellow; text-align: center; padding:10px 0; font-size: 20px; } .ele1 { grid-row-start: 2; } 1 2 3 4 5 6
684 次浏览
使用 flex-direction 属性和 column-reverse 值将弹性项目垂直排列,从下到上。示例您可以尝试运行以下代码来实现 column-reverse 值 - 在线演示 .mycontainer { display: flex; flex-direction: column-reverse; background-color: orange; } .mycontainer > div { background-color: white; text-align: center; line-height: 40px; font-size: 25px; width: 100px; margin: 5px; } 测验 Q1 Q2 Q3 Q4 Q5 Q6
78 次浏览
使用 unicode-bdi 属性设置文本是否应被覆盖以支持多种语言。示例在线演示 p.demo1 { direction: rtl; unicode-bidi: bidi-override; } p.demo2 { direction: rtl; unicode-bidi: isolate; } unicode-bidi 属性 这是演示文本。 这是演示文本 这是演示文本
85 次浏览
使用 Unicode-bidi 属性设置文本是否应被覆盖以支持多种语言。示例在线演示 p.demo1 { direction: rtl; unicode-bidi: bidi-override; } p.demo2 { direction: rtl; unicode-bidi: isolate; } unicode-bidi 属性 这是演示文本。 这是演示文本 这是演示文本
127 次浏览
使用 CSS 中的 tab-size 属性设置制表符宽度。您可以尝试运行以下代码来实现 tab-size 属性示例在线演示 #demo { tab-size: 12; } tab-size 属性 这是演示文本。
183 次浏览
使用 quotes 属性设置引号。您可以尝试运行以下代码来实现 quotes 属性示例在线演示 #demo { quotes: "'" "'"; } 这是用引号括起来的演示文本。
110 次浏览
97 次浏览
使用 hanging-punctuation 属性设置标点符号是否可以放在行框之外。它具有以下值序号属性值和描述1.None无标点符号2.First标点符号在第一行的起始边缘之外3.Last标点符号在最后一行的结束边缘之外在您的网页中这样设置:hanging-punctuation: none; hanging-punctuation: first; hanging-punctuation: last;
使用 font-size-adjust 属性在字体回退时保持可读性。您可以尝试运行以下代码来实现 font-size-adjust 属性示例在线演示 #demo { font-size-adjust: 0.90; } 二级标题 使用 font-size-adjust 属性: 这是演示文本。 未使用 font-size-adjust 属性: 这是演示文本。