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

手机站
千锋教育

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

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

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

当前位置:首页  >  技术干货  > css样式大全

css样式大全

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

  以下是一些 CSS 样式大全:

  文本样式

/* 文本颜色 */
color: #333;

/* 文本大小 */
font-size: 14px;

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

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

/* 上、下、左、右文本边距 */
padding-top: 10px;
padding-bottom: 10px;
padding-left: 10px;
padding-right: 10px;

/* 上、下、左、右外边距 */
margin-top: 10px;
margin-bottom: 10px;
margin-left: 10px;
margin-right: 10px;

/* 行高 */
line-height: 1.5;

/* 文本对齐方式 */
text-align: center;

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

/* 字母间隔 */
letter-spacing: 2px;

/* 单词间隔 */
word-spacing: 5px;

/* 斜体 */
font-style: italic;

      背景样式

/* 背景颜色 */
background-color: #f5f5f5;

/* 背景图片 */
background-image: url('bg.jpg');

/* 背景大小 */
background-size: cover;

/* 背景重复 */
background-repeat: no-repeat;

/* 背景固定 */
background-attachment: fixed;

/* 背景位置 */
background-position: left top;

/* 单独设置四个角的圆角 */
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;

/* 设置所有角的圆角 */
border-radius: 5px;

/* 盒子阴影 */
box-shadow: 0 0 10px #888888;

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

      常见元素样式

/* 设置链接样式 */
a {
color: blue;
text-decoration: none;
}

/* 设置按钮样式 */
button {
background-color: #4CAF50;
border: none;
color: white;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
border-radius: 5px;
}

/* 设置输入框样式 */
input[type=text], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}

/* 设置下拉列表样式 */
select {
font-size: 16px;
padding: 12px 20px;
border: none;
border-radius: 4px;
background-color: #f2f2f2;
}

        动画样式 

/* 位移动画 */
.move {
animation: move 2s ease;
}

@keyframes move {
from {
transform: translateX(0);
}
to {
transform: translateX(100px);
}
}

/* 旋转动画 */
.rotate {
animation: spin 2s linear infinite;
}

@keyframes spin {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}

/* 缩放动画 */
.zoom {
animation: zoomInOut 2s linear 1s;
}

@keyframes zoomInOut {
from {
transform: scale(1);
}
to {
transform: scale(1.5);
}
}

      以上是一些 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