CSS中div布局是常見的網站界面設計方式,其中
標簽用于劃分頁面,
標簽用于展示CSS代碼,以下是一個簡單的布局代碼的示例:.container { width: 960px; margin: 0 auto; background-color: #fff; border: 1px solid #ddd; padding: 20px; } .header { height: 80px; background-color: #f2f2f2; text-align: center; line-height: 80px; font-size: 24px; } .menu { width: 200px; background-color: #f2f2f2; float: left; margin-right: 20px; height: 500px; } .content { width: 720px; float: left; height: 500px; } .footer { clear: both; height: 100px; background-color: #f2f2f2; text-align: center; line-height: 100px; }上述代碼定義了一個容器
,其中包含四個子元素:頭部、菜單