找到 1575 篇文章 关于 CSS

如何使用命名 CSS 网格项目显示列和行

Samual Sam
更新于 2020-06-25 08:57:51

104 次查看

要使用命名 CSS 显示列和行,请使用 `grid-area` 属性,以及 `grid-template-areas` 属性示例在线演示                    .container {             display: grid;             background-color: green;             grid-template-areas: 'demo demo . . .' 'demo demo . . .';             padding: 20px;             grid-gap: 10px;          }          .container > div {             background-color: orange;             text-align: center;             padding: 10px 0;             font-size: 20px;          }          .ele1 {             grid-area: demo;          }                     游戏棋盘                1          2          3          4          5          6          

动画底部 CSS 属性

Lakshmi Srinivas
更新于 2020-06-25 08:50:58

1K+ 次查看

要使用 CSS 对底部属性实现动画,您可以尝试运行以下代码示例在线演示                    div {             width: 200px;             height: 300px;             background: yellow;             border: 10px solid red;             animation: myanim 3s infinite;             bottom: 30px;             position: absolute;          }          @keyframes myanim {             20% {                bottom: 100px;             }          }                     对底部属性执行动画          

如何在 CSS 网格中指定行之间的间隙大小

Chandu yadav
更新于 2020-06-25 08:57:03

277 次查看

使用 `grid-row-gap` 属性设置 CSS 中行之间的间隙大小示例在线演示                    .container {             display: grid;             grid-auto-rows: 50px;             grid-column-gap: 30px;             grid-row-gap: 50px;             background-color: #95A5A6;             padding: 10px;          }          .container>div {             background-color: #F0F3F4;             text-align: center;             padding:10px 0;             font-size: 20px;          }          .ele3 {             grid-column-end: span 2;          }                              1          2          3          4          5          6          

设置 CSS 网格列之间间隙的大小

karthikeya Boyini
更新于 2020-06-25 08:50:18

124 次查看

使用 `grid-column-gap` 属性设置 CSS 中网格列之间的间隙大小示例在线演示                    .container {             display: grid;             grid-auto-rows: 50px;             grid-column-gap: 30px;             grid-row-gap: 20px;             background-color: #2E86C1;             padding: 10px;          }          .container>div {             background-color: #F2D7D5;             text-align: center;             padding:10px 0;             font-size: 20px;          }          .ele3 {             grid-column-end: span 2;          }                              1          2          3          4          5          6          

设置 CSS 网格项目结束位置

Samual Sam
更新于 2020-06-25 08:49:32

92 次查看

使用 `grid-column-end` 属性设置网格项目结束位置。您可以尝试运行以下代码来实现 `grid-column-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-column-end: span 2;          }                              1          2          3          4          5          6          

设置 CSS 网格中自动放置的项目如何插入

Arjun Thakur
更新于 2020-06-25 08:38:45

107 次查看

使用 `grid-auto-flow` 属性设置网格中自动放置的项目如何插入。您可以尝试运行以下代码来实现 `grid-auto-flow` 属性示例在线演示                    .container {             display: grid;             grid-auto-columns: 50px;             grid-auto-flow: column;             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          

设置 CSS 网格的默认行大小

Lakshmi Srinivas
更新于 2020-06-25 08:22:52

302 次查看

使用 grid-auto-rows 属性来设置行的默认大小。您可以尝试运行以下代码来实现 CSS 中的 grid-auto-rows 属性 示例在线演示                    .container {             display: grid;             grid-auto-rows: 60px;             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          

CSS all 属性

karthikeya Boyini
更新于 2020-06-25 08:22:07

178 次浏览

使用 all 属性重置所有属性。将所有属性设置为 initial、inherit 或 unset。您可以尝试运行以下代码来实现 CSS all 属性示例在线演示                    html {             color: blue;          }          #demo {             background-color: yellow;             color: red;             all: inherit;          }                     CSS all 属性       这是一个演示文本。    

使用 CSS 处理元素内部的空白符

Ankith Reddy
更新于 2020-06-25 08:21:25

135 次浏览

使用 white-space 属性处理元素内部的空白符示例在线演示                    p.demo1 {             white-space: normal;          }          p.demo2 {             white-space: pre;          }                     控制空白符                这是一个演示文本。          这是一个演示文本。                      这是一个演示文本。          这是一个演示文本。          

使用 CSS 设置每个背景层的混合模式

Samual Sam
更新于 2020-06-25 08:20:42

56 次浏览

使用 background-blend-mode 属性来设置 CSS 中每个背景层的混合模式。您可以尝试运行以下代码来实现 background-blend-mode 属性并将模式设置为 darken示例在线演示                    #myDIV {             width: 250px;             height: 170px;             background-repeat: no-repeat, repeat;             background-image:url("https://tutorialspoint.com/assets/videotutorials/courses/3d_animation_online_training/380_course_211_image.jpg"),url( https://tutorialspoint.com/latest/dc.js.png);             background-blend-mode: darken;          }                     设置混合模式          

广告