找到 1575 篇文章 适用于 CSS
176 次浏览
使用 align-content 属性和值 center 将弹性线设置为居中。您可以尝试运行以下代码以实现 center 值示例在线演示 .mycontainer { display: flex; height: 200px; background-color: red; align-content: center; flex-wrap: wrap; } .mycontainer > div { background-color: yellow; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } 队列 Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8
104 次浏览
使用 justify-content 属性在项目未在主轴上使用所有可用空间时水平对齐弹性项目。您可以尝试运行以下代码以实现 justify-content 属性示例在线演示 .mycontainer { display: flex; background-color: blue; justify-content: center; } .mycontainer > div { background-color: white; text-align: center; line-height: 40px; font-size: 25px; width: 100px; margin: 5px; } 测验 Q1 Q2 Q3 Q4
183 次浏览
使用 align-content 属性修改 flex-wrap 属性的行为。示例您可以尝试运行以下代码以实现 flex-wrap 属性 - 在线演示 .mycontainer { display: flex; background-color: orange; align-content: space-between; height: 150px; width: 600px; flex-wrap: wrap; } .mycontainer > div { background-color: white; text-align: center; line-height: 40px; font-size: 25px; width: 100px; margin: 5px; } 测验 Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8
93 次浏览
使用 justify-content 属性和值 space-around 在行附近添加空格。示例您可以尝试运行以下代码以实现 space-around 值 - 在线演示 .mycontainer { display: flex; background-color: red; justify-content: space-around; } .mycontainer > div { background-color: orange; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } 测验 Q1 Q2 Q3 Q4
138 次浏览
使用 align-items 属性对齐弹性项目。示例您可以尝试运行以下代码以实现 align-items 属性 - 在线演示 .mycontainer { display: flex; background-color: orange; align-items: center; height: 150px; width: 600px; } .mycontainer > div { background-color: white; text-align: center; line-height: 40px; font-size: 25px; width: 100px; margin: 5px; } 测验 Q1 Q2 Q3 Q4
107 次查看
CSS 变量用于向网页添加自定义属性值。设置属性的自定义名称并为其设置值。您可以尝试运行以下代码,在 CSS 中实现变量以更改背景和文本颜色示例在线演示 :root { --my-bg-color: blue; --my-color: white; } #demo { background-color: var(--my-bg-color); color: var(--my-color); } 标题一 这是演示文本。这是演示文本。这是演示文本。 这是演示文本。这是演示文本。这是演示文本。这是演示文本。 这是演示文本。这是演示文本。
80 次查看
grid-template-rows 属性用于设置网格中的行数。示例您可以尝试运行以下代码来实现 grid-template-rows 属性 -在线演示 .container { display: grid; background-color: blue; grid-template-rows: 70px 190px; padding: 20px; grid-gap: 20px; } .container > div { background-color: orange; border: 2px solid gray; padding: 35px; font-size: 30px; text-align: center; } 游戏面板 1 2 3 4 5 6