找到 1575 篇文章 关于 CSS
53 次浏览
要使用 CSS 在 `border-bottom-right-radius` 属性上实现动画,您可以尝试运行以下代码示例在线演示 div { width: 500px; height: 400px; background: yellow; border: 10px solid yellow; border-bottom-right-radius: 150px; background-image:url('https://tutorialspoint.com/latest/electronic_measuring_instruments.png'); animation: myanim 3s infinite; background-position: bottom left; background-size: 50px; } @keyframes myanim { 20% { background-color: maroon; background-size: 90px; border-bottom-color: green; border-bottom-right-radius: 50px; } } 执行底部边框右半圆角动画
60 次浏览
使用 CSS `grid-row-start` 属性设置网格项目结束位置。您可以尝试运行以下代码来实现 `grid-row-end` 属性示例在线演示 .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; } .ele3 { grid-row-end: span 2; } 1 2 3 4 5 6
89 次浏览
要使用 CSS 在 `border-bottom-left-radius` 属性上实现动画,您可以尝试运行以下代码示例在线演示 div { width: 500px; height: 400px; background: yellow; border: 10px solid green; border-bottom-left-radius: 150px; animation: myanim 3s infinite; background-position: bottom left; background-size: 50px; } @keyframes myanim { 20% { background-size: 90px; border-bottom-left-radius: 50px; } } 执行底部边框左半圆角动画
105 次浏览
要使用 CSS 在 `border-top-left-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-left-radius: 150px; } } 执行左上角边框动画 科目 学生 成绩 数学 Amit 98 科学 Sachin 99
446 次浏览
使用 `grid-auto-columns` 属性设置列的默认大小。您可以尝试运行以下代码来使用 CSS 实现 `grid-auto-columns` 属性示例在线演示 .container { display: grid; grid-auto-columns: 100px; grid-gap: 10px; background-color: blue; padding: 10px; } .container>div { background-color: #E5E7E9; text-align: center; padding:10px 0; font-size: 20px; } 1 2 3 4 5 6
72 次浏览
使用`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
93 次浏览
使用`align-content`属性和`space-around`值在弹性盒子行周围添加空间。您可以尝试运行以下代码来实现`space-around`值:示例在线演示 .mycontainer { display: flex; height: 200px; background-color: #884EA0; align-content: space-around; flex-wrap: wrap; } .mycontainer > div { background-color: #00FF00; text-align: center; line-height: 60px; font-size: 30px; width: 100px; margin: 5px; } 队列 Q1 Q2 Q3 Q4 Q5 Q6 Q7 Q8
112 次浏览
使用 `grid-row` 属性设置网格项目的尺寸。它具有 `grid-row-start` 和 `grid-row-end` 属性。您可以尝试运行以下代码来实现 CSS `grid-row` 属性:示例在线演示 .container { display: grid; background-color: green; grid-template-columns: auto auto; padding: 20px; grid-gap: 10px; } .container > div { background-color: orange; text-align: center; padding: 10px 0; font-size: 20px; } .ele1 { grid-row: 1 / 6; } 游戏面板 1 2 3 4 5 6
155 次浏览
使用 `grid` 属性设置以下属性:`grid-template-rows`、`grid-template-columns`、`grid-template-areas`、`grid-auto-rows`、`grid-auto-columns` 和 `grid-auto-flow` 属性。示例您可以尝试运行以下代码来实现 CSS `grid` 属性:在线演示 .container { display: grid; grid: 100px / auto auto; 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