找到 1575 篇文章 关于 CSS
104 次浏览
要使用 CSS 在颜色属性上实现动画,您可以尝试运行以下代码示例实时演示 div { width: 200px; height: 300px; background: white; border: 10px solid red; animation: myanim 3s infinite; bottom: 30px; position: absolute; } @keyframes myanim { 20% { bottom: 100px; box-shadow: 30px 45px 70px orange; color: blue; } } 在颜色属性上执行动画 这是一个演示 div!
142 次浏览
要使用 CSS 在 border-top-right-radius 属性上实现动画,您可以尝试运行以下代码示例实时演示 table,th,td { border: 2px solid black; } #newTable { width: 500px; height: 300px; background: yellow; border: 15px solid yellow; animation: myanim 3s infinite; background-position: bottom left; background-size: 50px; } @keyframes myanim { 30% { background-color: orange; border-spacing: 50px; border-top-color: red; border-top-right-radius: 150px; } } 执行 border-top-right-radius 动画 科目 学生 成绩 PHP Tom 90 Java Henry 70
111 次浏览
使用值为 flex-start 的 justify-content 属性将弹性项目对齐到开头。您可以尝试运行以下代码来实现 flex-start 值示例实时演示 .mycontainer { display: flex; background-color: red; justify-content: flex-start; } .mycontainer > div { background-color: orange; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } 结果 排名1 排名2 排名3 排名4
118 次浏览
要使用 CSS 在 border-spacing 属性上实现动画,您可以尝试运行以下代码示例实时演示 table,th,td { border: 1px solid green; } #newTable { width: 500px; height: 300px; background: yellow; border: 15px solid yellow; animation: myanim 3s infinite; background-position: bottom left; background-size: 50px; } @keyframes myanim { 30% { background-color: orange; border-right-color: red; border-right-width: 25px; border-spacing: 50px } } 执行 border-spacing 动画 科目 学生 成绩 数学 Amit 98 科学 Sachin 99
76 次浏览
使用 CSS 实现 border-right-width 属性的动画效果,可以尝试运行以下代码示例在线演示 div { width: 500px; height: 300px; background: yellow; border: 15px solid yellow; background-image: url('https://tutorialspoint.com/latest/cuda.png'); animation: myanim 3s infinite; background-position: bottom left; background-size: 50px; } @keyframes myanim { 30% { background-color: maroon; border-right-color: red; border-right-width: 25px; } } 实现 border-right-width 的动画效果
1K+ 次浏览
使用 align-items 属性并将其值设置为 flex-start,即可将弹性项目对齐到顶部。可以尝试运行以下代码,以实现 flex-start 值示例在线演示 .mycontainer { display: flex; height: 300px; background-color: red; align-items: flex-start; } .mycontainer > div { background-color: white; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } 测验 问题 1 问题 2 问题 3 问题 4 问题 5
117 次浏览
使用 align-items 属性并将其值设置为 center,即可将弹性项目对齐到中间。示例可以尝试运行以下代码,以实现 center 值在线演示 .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; } 测验 问题 1 问题 2 问题 3 问题 4
176 次浏览
nav-up 属性用于在您按下键盘上的向上箭头按钮时向上移动。可以尝试运行以下代码来实现 CSS nav-up 属性示例在线演示 button { position: absolute; } button#btn1 { top: 10%; left: 15%; nav-index: 1; nav-right: #btn2; nav-left: #btn4; nav-down: #btn2; nav-up: #btn4; } button#btn2 { top: 30%; left: 30%; nav-index: 2; nav-right: #btn3; nav-left: #btn1; nav-down: #btn3; nav-up: #btn1; } button#btn3 { top: 50%; left: 15%; nav-index: 3; nav-right: #btn4; nav-left: #btn2; nav-down: #btn4; nav-up: #btn2; } button#btn4 { top: 30%; left: 0%; nav-index: 4; nav-right: #btn1; nav-left: #btn3; nav-down: #btn1; nav-up: #btn3; } 结果 1 结果 2 结果 3 结果 4