千锋教育-做有情怀、有良心、有品质的职业教育机构

手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

当前位置:首页  >  技术干货  > css代码大全

css代码大全

来源:千锋教育
发布人:zyh
时间: 2023-05-30 14:42:00 1685428920

  以下是一些常用的 CSS 代码示例:

  基础样式

/* 设置文本颜色 */
color: red;

/* 设置字体大小 */
font-size: 16px;

/* 设置字体加粗 */
font-weight: bold;

/* 设置字体 */
font-family: Arial, sans-serif;

/* 设置文字对齐方式 */
text-align: center;

/* 设置文本装饰 */
text-decoration: underline;

/* 设置换行方式 */
word-wrap: break-word;

      盒模型

/* 设置元素边框大小 */
border: 1px solid black;

/* 设置元素内边距大小 */
padding: 10px;

/* 设置元素外边距大小 */
margin: 20px;

/* 设置元素宽度 */
width: 300px;

/* 设置元素高度 */
height: 150px;

/* 设置元素最小宽度 */
min-width: 200px;

/* 设置元素最小高度 */
min-height: 100px;

      位置和布局

/* 设置元素相对于其父元素绝对定位 */
position: absolute;
top: 10px;
left: 20px;

/* 设置元素相对于浏览器窗口固定定位 */
position: fixed;
top: 0px;
left: 0px;

/* 设置元素相对于其自身相对定位 */
position: relative;
top: 10px;
left: 20px;

/* 设置元素相对于文档流定位 */
position: static;

/* 设置元素居中对齐 */
display: flex;
justify-content: center;
align-items: center;

/* 设置元素悬浮对齐 */
display: flex;
flex-direction: column;
justify-content: space-around;

      背景

/* 设置元素背景颜色 */
background-color: yellow;

/* 设置元素背景图片 */
background-image: url('image.jpg');
background-repeat: no-repeat;
background-size: cover;

/* 设置元素半透明背景 */
background-color: rgba(255, 255, 255, 0.5);

/* 设置元素背景渐变 */
background: linear-gradient(to right, red , yellow);

/* 设置元素背景模糊 */
backdrop-filter: blur(5px);

      动画效果

/* 设置元素渐变动画 */
animation: fade 2s linear infinite;

@keyframes fade {
0% {
opacity: 0;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}

/* 设置元素旋转动画 */
animation: spin 5s linear infinite;

@keyframes spin {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}

/* 设置元素缩放动画 */
animation: scale 2s linear infinite;

@keyframes scale {
0% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1);
}
}

      响应式布局

/* 设置元素在不同设备大小下显示方式 */
@media screen and (max-width: 480px) {
.box {
display: block;
}
}

@media screen and (min-width: 481px) and (max-width: 768px) {
.box {
display: inline-block;
}
}

@media screen and (min-width: 769px) {
.box {
display: flex;
}
}

      以上仅是一些常用的 CSS 代码示例,实际上 CSS 的用途非常广泛,可以实现很多炫酷的效果。可以参考 CSS 官方文档学习更多的 CSS 代码。

tags:
声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。
10年以上业内强师集结,手把手带你蜕变精英
请您保持通讯畅通,专属学习老师24小时内将与您1V1沟通
免费领取
今日已有369人领取成功
刘同学 138****2860 刚刚成功领取
王同学 131****2015 刚刚成功领取
张同学 133****4652 刚刚成功领取
李同学 135****8607 刚刚成功领取
杨同学 132****5667 刚刚成功领取
岳同学 134****6652 刚刚成功领取
梁同学 157****2950 刚刚成功领取
刘同学 189****1015 刚刚成功领取
张同学 155****4678 刚刚成功领取
邹同学 139****2907 刚刚成功领取
董同学 138****2867 刚刚成功领取
周同学 136****3602 刚刚成功领取
相关推荐HOT