今天我們來學習如何將CSS樣式添加到甜品網站中。
/* CSS代碼開始 */ body { margin: 0; padding: 0; background-color: #F5F5F5; } header { height: 80px; background-color: #FBDE44; } nav { display: flex; justify-content: space-between; align-items: center; padding: 0 50px; } nav img { height: 50px; } nav ul { list-style: none; display: flex; } nav li { margin-left: 30px; } nav a { text-decoration: none; color: #fff; font-size: 18px; } section { display: flex; flex-wrap: wrap; justify-content: center; padding: 50px; max-width: 1200px; margin: 0 auto; } .card { width: 300px; height: 400px; background-color: #fff; border-radius: 20px; margin: 30px; box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3); transition: all 0.3s ease-in-out; } .card:hover { transform: translateY(-10px); } .card img { width: 100%; height: 250px; border-top-left-radius: 20px; border-top-right-radius: 20px; object-fit: cover; } .card h3 { font-size: 24px; margin: 25px 20px; color: #FBDE44; } .card p { font-size: 18px; margin: 0 20px; } .card button { width: 200px; height: 50px; background-color: #FBDE44; border: none; border-radius: 10px; color: #fff; font-size: 18px; margin: 20px; cursor: pointer; transition: all 0.3s ease-in-out; } .card button:hover { background-color: #D8C400; transform: translateY(-5px); } /* CSS代碼結束 */
以上代碼為一個簡單的甜品網站的CSS樣式,將其添加到甜品網站HTML文件的header標簽內即可生效。至此,我們已經學習了如何使用CSS樣式來美化網站。希望本次學習對您有所幫助。
上一篇mysql 索引實際存儲
下一篇css調邊框粗細