對于想學習CSS的初學者來說,找到一些簡單的素材進行聯系是非常重要的。本文將介紹一些適合初學者練手的簡單CSS素材。
/* 1.改變字體顏色和背景顏色 */ body { color: white; background-color: black; } /* 2.基本盒模型 */ .box { width: 200px; height: 200px; border: 1px solid black; padding: 20px; margin: 30px; background-color: gray; } /* 3.文本居中 */ .text-center { text-align: center; } /* 4.列表樣式 */ ul { list-style: none; } li:before { content: '? '; color: green; } /* 5.導航欄樣式 */ nav { background-color: gray; } nav a { color: white; text-decoration: none; padding: 10px; } nav a:hover { background-color: black; } /* 6.響應式布局 */ @media (max-width: 600px) { .box { width: 100%; margin: 0; } } /* 7.鼠標懸停改變顏色 */ .hover-color:hover { background-color: green; } /* 8.伸縮布局 */ .flex { display: flex; justify-content: center; align-items: center; height: 100vh; } /* 9.背景圖像 */ .banner { background-image: url('banner.jpg'); background-size: cover; height: 200px; } /* 10.透明度 */ .opacity { background-color: blue; opacity: 0.5; height: 200px; }
以上素材都很簡單,你可以嘗試使用它們來練習CSS。