找到 1575 篇文章 关于 CSS

在 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 次浏览

使用`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        

使用CSS显示周围带有空格的弹性盒子行

Ankith Reddy
更新于 2020年6月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年6月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年6月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年7月4日 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        

广告