CSS天氣導航代碼可以幫助網站設計人員更好地呈現天氣信息。以下是一段可以直接嵌入網站的CSS代碼:
.weather { display: flex; justify-content: center; align-items: center; font-family: Arial, sans-serif; font-size: 20px; text-transform: uppercase; color: #fff; background-color: #009688; padding: 10px; } .weather span { margin-right: 10px; } .weather .temp { font-size: 40px; font-weight: bold; margin-right: 20px; } .weather .conditions { font-size: 30px; font-weight: bold; } .weather .icon { font-size: 50px; margin-right: 10px; }
將以上代碼嵌入網站,然后在HTML中添加以下代碼,即可呈現天氣導航:
<div class="weather"> <span class="icon"><i class="fas fa-cloud-sun"></i></span> <span class="temp">20℃</span> <span class="conditions">晴</span> </div>
以上代碼會呈現一個背景為深綠色的天氣導航,包含了一個圖標、當前溫度和天氣狀況的文字描述。如果需要更多的天氣信息,也可以根據以上代碼進行適當的修改。
上一篇jq css div寬度
下一篇css天氣預報if