找到关于 CSS 的 1575 篇文章

在 CSS `border-bottom-right-radius` 属性上执行动画

Lakshmi Srinivas
更新于 2020年6月25日 08:18:36

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;             }          }                     执行底部边框右半径动画          

CSS `grid-row-end` 属性的用法

George John
更新于 2020年6月25日 08:20:01

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          

在 CSS `border-bottom-left-radius` 属性上执行动画

karthikeya Boyini
更新于 2020年6月25日 07:39:14

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;             }          }                     执行底部边框左半径动画          

动画 CSS `border-top-left-radius` 属性

Ankith Reddy
更新于 2020年6月25日 07:38:18

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                    

如何在 CSS Grid 中设置默认列大小

Samual Sam
更新于 2020年6月25日 07:37:38

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          

使用 CSS 将弹性线显示在容器的中心

Lakshmi Srinivas
更新于 2020年6月25日 07:32:10

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          

使用 CSS 显示四周留有空格的弹性线

Ankith Reddy
更新于 2020-06-25 07:30:43

浏览量: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          

`linear-gradient()` CSS 函数的使用

karthikeya Boyini
更新于 2020-06-25 07:27:12

浏览量:70

使用 `linear-gradient()` CSS 函数设置线性渐变作为背景图像。您可以尝试运行以下代码在 CSS 中实现 `linear-gradient()` 函数。示例 在线演示                    #demo {             height: 200px;             background: linear-gradient(green, orange, maroon);          }                     设置背景为线性渐变。          

CSS `grid-row` 属性

Samual Sam
更新于 2020-06-25 07:25:36

浏览量: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          

CSS `grid` 属性的使用

George John
更新于 2020-07-04 06:43:52

浏览量: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          

广告