以下是一些 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;
/* 文本對(duì)齊方式 */
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;
/* 背景重復(fù) */
background-repeat: no-repeat;
/* 背景固定 */
background-attachment: fixed;
/* 背景位置 */
background-position: left top;
/* 單獨(dú)設(shè)置四個(gè)角的圓角 */
border-top-left-radius: 5px;
border-top-right-radius: 5px;
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
/* 設(shè)置所有角的圓角 */
border-radius: 5px;
/* 盒子陰影 */
box-shadow: 0 0 10px #888888;
/* 模糊背景 */
backdrop-filter: blur(5px);
常見元素樣式
/* 設(shè)置鏈接樣式 */
a {
color: blue;
text-decoration: none;
}
/* 設(shè)置按鈕樣式 */
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;
}
/* 設(shè)置輸入框樣式 */
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;
}
/* 設(shè)置下拉列表樣式 */
select {
font-size: 16px;
padding: 12px 20px;
border: none;
border-radius: 4px;
background-color: #f2f2f2;
}
動(dòng)畫樣式
/* 位移動(dòng)畫 */
.move {
animation: move 2s ease;
}
@keyframes move {
from {
transform: translateX(0);
}
to {
transform: translateX(100px);
}
}
/* 旋轉(zhuǎn)動(dòng)畫 */
.rotate {
animation: spin 2s linear infinite;
}
@keyframes spin {
from {
transform: rotate(0);
}
to {
transform: rotate(360deg);
}
}
/* 縮放動(dòng)畫 */
.zoom {
animation: zoomInOut 2s linear 1s;
}
@keyframes zoomInOut {
from {
transform: scale(1);
}
to {
transform: scale(1.5);
}
}
以上是一些 CSS 樣式大全,這些樣式可以幫助你快速實(shí)現(xiàn)常見的樣式效果。但是需要根據(jù)具體的頁面或應(yīng)用進(jìn)行進(jìn)行調(diào)整和改進(jìn)。