在編寫CSS代碼時(shí),經(jīng)常使用一些常見的樣式代碼文件。下面是一些常見的CSS樣式代碼文件:
/*重置全局樣式*/ * { margin: 0; padding: 0; box-sizing: border-box; } /*常用布局樣式*/ .container { width: 1200px; margin: 0 auto; overflow: hidden; } /*文字樣式*/ h1 { font-size: 36px; font-weight: bold; text-align: center; } p { font-size: 16px; line-height: 1.5; } /*鏈接樣式*/ a { text-decoration: none; color: #333; } a:hover { color: #ff6700; } /*按鈕樣式*/ .button { display: inline-block; padding: 10px 20px; background-color: #ff6700; border-radius: 4px; color: #fff; } .button:hover { background-color: #333; color: #fff; }
以上是一些常見的CSS樣式代碼文件,這些代碼可以讓我們更快速地編寫好看的網(wǎng)站布局和樣式。