CSS通用代碼是編寫CSS樣式的基礎(chǔ),因?yàn)樗鼈兛梢詰?yīng)用于許多不同的元素和網(wǎng)頁。以下是一些常用的CSS通用代碼:
/* 設(shè)置網(wǎng)頁字體和背景顏色 */ body { font-family: Arial, sans-serif; color: #333; background-color: #fff; } /* 設(shè)置鏈接的樣式 */ a { color: #007bff; text-decoration: none; } /* 設(shè)置圖片大小和邊框 */ img { max-width: 100%; border: 1px solid #ccc; } /* 設(shè)置列表的樣式 */ ul, ol { margin: 0; padding: 0; list-style: none; } /* 設(shè)置表格的樣式 */ table { border-collapse: collapse; width: 100%; } td, th { border: 1px solid #ccc; padding: 8px; } /* 設(shè)置段落的樣式 */ p { margin: 0; padding: 8px 0; line-height: 1.5; } /* 設(shè)置標(biāo)題的樣式 */ h1, h2, h3, h4, h5 { font-weight: normal; margin: 0; padding: 16px 0; } /* 設(shè)置按鈕的樣式 */ button { display: inline-block; padding: 8px 16px; font-size: 16px; border: none; background-color: #007bff; color: #fff; cursor: pointer; }
這些CSS通用代碼可以在不同的網(wǎng)站和頁面中重復(fù)使用,讓你的樣式保持一致和整潔。同時(shí),你也可以按照需求對代碼進(jìn)行修改和調(diào)整,以滿足特定的設(shè)計(jì)需求。