以下是一些常用的 CSS 代碼示例:
基礎(chǔ)樣式
/* 設(shè)置文本顏色 */
color: red;
/* 設(shè)置字體大小 */
font-size: 16px;
/* 設(shè)置字體加粗 */
font-weight: bold;
/* 設(shè)置字體 */
font-family: Arial, sans-serif;
/* 設(shè)置文字對齊方式 */
text-align: center;
/* 設(shè)置文本裝飾 */
text-decoration: underline;
/* 設(shè)置換行方式 */
word-wrap: break-word;
盒模型
/* 設(shè)置元素邊框大小 */
border: 1px solid black;
/* 設(shè)置元素內(nèi)邊距大小 */
padding: 10px;
/* 設(shè)置元素外邊距大小 */
margin: 20px;
/* 設(shè)置元素寬度 */
width: 300px;
/* 設(shè)置元素高度 */
height: 150px;
/* 設(shè)置元素最小寬度 */
min-width: 200px;
/* 設(shè)置元素最小高度 */
min-height: 100px;
位置和布局
/* 設(shè)置元素相對于其父元素絕對定位 */
position: absolute;
top: 10px;
left: 20px;
/* 設(shè)置元素相對于瀏覽器窗口固定定位 */
position: fixed;
top: 0px;
left: 0px;
/* 設(shè)置元素相對于其自身相對定位 */
position: relative;
top: 10px;
left: 20px;
/* 設(shè)置元素相對于文檔流定位 */
position: static;
/* 設(shè)置元素居中對齊 */
display: flex;
justify-content: center;
align-items: center;
/* 設(shè)置元素懸浮對齊 */
display: flex;
flex-direction: column;
justify-content: space-around;
背景
/* 設(shè)置元素背景顏色 */
background-color: yellow;
/* 設(shè)置元素背景圖片 */
background-image: url('image.jpg');
background-repeat: no-repeat;
background-size: cover;
/* 設(shè)置元素半透明背景 */
background-color: rgba(255, 255, 255, 0.5);
/* 設(shè)置元素背景漸變 */
background: linear-gradient(to right, red , yellow);
/* 設(shè)置元素背景模糊 */
backdrop-filter: blur(5px);
動畫效果
/* 設(shè)置元素漸變動畫 */
animation: fade 2s linear infinite;
@keyframes fade {
0% {
opacity: 0;
}
50% {
opacity: 0.5;
}
100% {
opacity: 1;
}
}
/* 設(shè)置元素旋轉(zhuǎn)動畫 */
animation: spin 5s linear infinite;
@keyframes spin {
0% {
transform: rotate(0);
}
100% {
transform: rotate(360deg);
}
}
/* 設(shè)置元素縮放動畫 */
animation: scale 2s linear infinite;
@keyframes scale {
0% {
transform: scale(1);
}
50% {
transform: scale(1.5);
}
100% {
transform: scale(1);
}
}
響應(yīng)式布局
/* 設(shè)置元素在不同設(shè)備大小下顯示方式 */
@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 的用途非常廣泛,可以實現(xiàn)很多炫酷的效果。可以參考 CSS 官方文檔學(xué)習(xí)更多的 CSS 代碼。