以下是一些常用的 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 代码。