找到关于 CSS 的 1575 篇文章
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 次浏览
使用值为 `center` 的 `align-content` 属性将弹性线设置为居中。您可以尝试运行以下代码来实现 `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