hao123日歷html代碼
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>hao123日歷</title> <style> #calendar { width: 500px; height: 500px; border: 1px solid #ccc; font-family: Arial, sans-serif; } .title { text-align: center; font-size: 24px; font-weight: bold; margin: 20px 0; } .weekdays { display: flex; justify-content: space-between; margin-bottom: 10px; } .weekdays div { width: 14%; text-align: center; } .days { display: flex; flex-wrap: wrap; } .days div { width: 14%; height: 50px; display: flex; justify-content: center; align-items: center; border: 1px solid #ccc; } .days div:hover { background-color: #f5f5f5; cursor: pointer; } </style> </head> <body> <div id="calendar"> <div class="title">2021年9月日歷</div> <div class="weekdays"> <div>一</div> <div>二</div> <div>三</div> <div>四</div> <div>五</div> <div>六</div> <div>日</div> </div> <div class="days"> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> <div></div> </div> </div> </body> </html>