css3有哪些新特性?包含哪些模块?以下是整理的21个css3新特性:
1.新增选择器
p:nth-child(n){color: rgba(255, 0, 0, 0.75)}
2.新增伪元素
::before 和 ::after
3.弹性盒模型
display: flex;
4.多列布局
column-count: 5;
5.媒体查询
@media (max-width: 480px) {.box: {column-count: 1;}}
6.个性化字体
@font-face{font-family: BorderWeb; src:url(BORDERW0.eot);}
7.颜色透明度
color: rgba(255, 0, 0, 0.75);
8.圆角
border-radius: 5px;
9.渐变
background:linear-gradient(red, green, blue);
10.阴影
box-shadow:3px 3px 3px rgba(0, 64, 128, 0.3);
11.倒影
box-reflect: below 2px;
12.文字装饰
text-stroke-color: red;
13.文字溢出
text-overflow:ellipsis;
14.背景效果
background-size: 100px 100px;
15.边框效果
border-image:url(bt_blue.png) 0 10;
16.旋转
transform: rotate(20deg);
17.倾斜
transform: skew(150deg, -10deg);
18.位移
transform: translate(20px, 20px);
19.缩放
transform: scale(.5);
20.平滑过渡
transition: all .3s ease-in .1s;
21.动画
@keyframes anim-1 {50% {border-radius: 50%;}} animation: anim-1 1s;
css3有哪些新特性?(包含哪些模块)
你的美,让我痴迷2023-08-27 1:06
相关推荐
GIS之路32 分钟前
ArcGIS Pro 中的 notebook 初识JavaGuide41 分钟前
7 道 RAG 基础概念知识点/面试题总结ssshooter1 小时前
看完就懂 useSyncExternalStore格砸2 小时前
从入门到辞职|从ChatGPT到OpenClaw,跟上智能时代的进化Live000003 小时前
在鸿蒙中使用 Repeat 渲染嵌套列表,修改内层列表的一个元素,页面不会更新柳杉3 小时前
使用Ai从零开发智慧水利态势感知大屏(开源)兆子龙3 小时前
从高阶函数到 Hooks:React 如何减轻开发者的心智负担(含 Demo + ahooks 推荐)狗胜3 小时前
测试文章 - API抓取三小河3 小时前
VS Code 集成 claude-code 教程:告别海外限制,无缝对接国内大模型