html+css網頁開發 之 底部footer
阿新 • • 發佈:2020-12-19
- 1號盒子是通欄大盒子,高度為400px;
- 2號盒子版心水平居中
- 3號盒子版權copyright左對齊
- 4號盒子連結組links右對齊
index.html
<div class="footer"> /* 設定版心 */ <div class="w"> <div class="copyright"> <img src="imsges/logo.png" alt=""> <p>學成線上致力於普及中國最好的教育它與中國一流大學和機構合作提供線上課程。<br />© 2017年XTCG Inc.保留所有權利。-滬ICP備15025210號</p> </div> <div class="links"> <dl> <dt>關於學成網</dt> <dd><a href="#">關於</a></<dd> <dd><a href="#">管理團隊</a></<dd> <dd><a href="#">工作機會</a></<dd> <dd><a href="#">客戶服務</a></<dd> <dd><a href="#">幫助</a></<dd> </dl> </div> </div> </div>
style.css
*{ margin: 0; padding: 0; } .w{ width:1200px; margin: auto; } .footer { height: 415px; background-color: #fff; } .footer .w { padding-top: 35px; } .copyright { float: left; } .copyright p { font-size: 12px; color: #666; matgin: 20px 0 15px 0; } .copyright .app { display: block; width: 118px; height: 33px; border: 1px solid #00a4ff; text-align: center; line-height: 33px; color: #00a4ff; font-size: 16px; } .links { float: right; } .links dl { float: left; margin-left: 100px; } .links dl dt { font-size: 16px; color: #333; margin-bottom: 5px; } .links dl dd a { color: #333; font-size: 12px; }