CSS是前端開發(fā)必不可少的一部分,掌握常用代碼可以幫助我們更快更好地完成頁面布局和美化。下面就介紹一些常用的CSS代碼:
/* 設(shè)置背景顏色 */ body { background-color: #f1f1f1; } /* 居中 */ .container { margin: auto; width: 80%; } /* 設(shè)置字體 */ h1 { font-family: Arial, sans-serif; font-weight: bold; font-size: 48px; } /* 設(shè)置字體顏色 */ p { color: #555; } /* 隱藏元素 */ .hidden { display: none; } /* 設(shè)置邊框 */ .box { border: 1px solid #ccc; } /* 設(shè)置圓角 */ .rounded { border-radius: 5px; } /* 設(shè)置陰影 */ .shadow { box-shadow: 2px 2px 5px #ccc; } /* 設(shè)置字體大小和行高 */ .text { font-size: 24px; line-height: 1.5; } /* 設(shè)置水平居中 */ .text-center { text-align: center; } /* 設(shè)置垂直居中 */ .vertical-center { display: flex; justify-content: center; align-items: center; } /* 清除浮動 */ .clearfix { clear: both; } /* 設(shè)置動畫 */ .animation { animation: fadein 2s; } @keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
以上是常用的CSS代碼,掌握這些基本的代碼可以幫助我們完成頁面的布局和美化。當(dāng)然,CSS還有很多其他的代碼和屬性,可以根據(jù)需要進(jìn)行學(xué)習(xí)和掌握。