找到 1575 篇文章 适用于 CSS
102 次查看
使用 order 属性设置弹性项目的顺序您可以尝试运行以下代码来实现 CSS order 属性 -示例实时演示 .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
984 次查看
要使用 CSS 在 box-shadow 属性上实现动画,您可以尝试运行以下代码示例实时演示 div { width: 200px; height: 300px; background: yellow; border: 10px solid red; animation: myanim 3s infinite; bottom: 30px; position: absolute; } @keyframes myanim { 20% { bottom: 100px; box-shadow: 30px 45px 70px orange; } } 在 box-shadow 上执行动画
124 次查看
要使用 CSS 在 clip 属性上实现动画,您可以尝试运行以下代码示例实时演示 div { width: 200px; height: 300px; background: yellow; border: 10px solid red; animation: myanim 3s infinite; bottom: 30px; position: absolute; clip: rect(0,100px,50px,0); } @keyframes myanim { 20% { bottom: 100px; clip: rect(0,150px,40px,0); } } 在 clip 属性上执行动画
114 次查看
使用 grid-template-rows 属性在 CSS 网格布局中定义行数。示例您可以尝试运行以下代码来设置行数。实时演示 .container { display: grid; background-color: gray; grid-template-rows: 120px 90px 100px; padding: 20px; grid-gap: 20px; } .container > div { background-color: yellow; border: 2px solid gray; padding: 35px; font-size: 30px; text-align: center; } 游戏板 1 2 3 4 5 6
180 次查看
使用 justify-content 属性和值 center 将弹性项目对齐到中心。示例您可以尝试运行以下代码来实现 center 值 -实时演示 .mycontainer { display: flex; background-color: red; justify-content: center; } .mycontainer > div { background-color: orange; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } 测验 Q1 Q2 Q3 Q4
109 次查看
使用 CSS 设置 Grid 行和列之间的间距。您可以尝试运行以下代码来实现 grid-gap 属性。示例在线演示 .container { display: grid; background-color: green; grid-template-columns: auto auto; padding: 20px; grid-gap: 20px 20px; } .ele { background-color: orange; border: 2px solid gray; padding: 35px; font-size: 30px; text-align: center; } 游戏棋盘 1 2 3 4 5 6
446 次浏览
要设置 Grid 布局中每列的宽度,请使用 grid-template-columns 属性。示例您可以尝试运行以下代码来实现它 −在线演示 .container { display: grid; background-color: gray; grid-template-columns: 120px 80px 50px; padding: 20px; grid-gap: 20px; } .container > div { background-color: yellow; border: 2px solid gray; padding: 35px; font-size: 30px; text-align: center; } 游戏棋盘 1 2 3 4 5 6
2K+ 次浏览
要将文本定位到图像中心,请在 CSS 中使用 transform 属性。您可以尝试运行以下代码来实现图像上的居中文本示例在线演示 .container { position: relative; } .topleft { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); font-size: 18px; } img { width: 100%; height: auto; opacity: 0.3; } 图像文本 在图像中心添加一些文本: 居中