web前端佈局練手專案
仿北大首頁佈局(只關心佈局)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>練手專案1---Mr.Robot</title>
<style type="text/css">
*{
margin: 0;
padding: 0;
}
#top{
margin: 0 auto;
/*top欄居中對齊*/
height: 103px;
width: 970px;
}
#top #logo{
height: 103px;
width: 277px;
float: left;
background-color: red;
}
#top #language{
height: 49px;
width: 137px;
margin-bottom: 8px;
float: right;
background-color: green;
}
#top #nav{
width: 679px;
height: 46px;
float:right;
background-color: green;
}
#content{
margin: 0 auto;
margin-top: 10px;
margin-bottom: 10px;
height: 435px;
width: 970px;
/*background-color: gray;*/
}
#content #leftpart{
float: left;
height: 435px;
width: 310px;
background-color: yellow;
margin-right: 10px;
}
#content #rightpart{
float: left;
width: 650px;
height: 435px;
margin-bottom: 10px;
/*background-color: black;*/
}
#content #main{
width: 450px;
height: 400px;
margin-right: 10px;
margin-bottom: 10px;
float: left;
}
#content #rightpart #news1{
width: 450px;
height: 240px;
margin-bottom: 10px;
background-color: skyblue;
}
#content #rightpart #news2{
width: 450px;
height: 110px;
margin-bottom: 10px;
background-color: green;
}
#content #rightpart #news3{
width: 450px;
height: 30px;
margin-bottom: 10px;
background-color: skyblue;
}
#content #rightpart #hotpic{
width: 190px;
height: 400px;
float: left;
background-color: purple;
}
#content #rightpart #links{
float: left;
width: 650px;
height: 25px;
background-color: yellow;
}
#footer{
height: 35px;
width: 970px;
background-color: skyblue;
margin: 0 auto;
}
</style>
</head>
<body>
<!-- 頭部 -->
<div id="top">
<div id="logo"></div>
<div id="language"></div>
<div id="nav"></div>
</div>
<!-- 主要內容 -->
<div id="content">
<div id="leftpart"></div>
<div id="rightpart">
<div id="main">
<div id="news1"></div>
<div id="news2"></div>
<div id="news3"></div>
</div>
<div id="hotpic"></div>
<div id="links"></div>
</div>
</div>
<!-- 頁尾 -->
<div id="footer"></div>
</body>
</html>
相關文章
- 前端練手專案前端
- Web前端佈局Web前端
- 前端練手專案小結前端
- web前端佈局篇(切圖)Web前端
- 練手專案,實現一個web框架Web框架
- 一個專案的前端佈局給我的思考前端
- web前端html+css常用佈局01Web前端HTMLCSS
- web前端html+css常用佈局02Web前端HTMLCSS
- web前端html+css常用佈局03Web前端HTMLCSS
- web前端html+css常用佈局04Web前端HTMLCSS
- gin練手專案
- 長沙前端培訓機構:新手練手前端專案實戰前端
- Vue專案rem佈局設定VueREM
- 前端成神之路-移動web開發_流式佈局前端Web
- web前端學習筆記(CSS固定寬度佈局)Web前端筆記CSS
- Flutter練手專案--玩安卓Flutter安卓
- 小米商場佈局練習
- web前端學習筆記(CSS變化寬度佈局)Web前端筆記CSS
- 長沙前端培訓機構:10個適合新手練手的前端專案前端
- Web移動端佈局Web
- 前端css佈局之BFC前端CSS
- 前端BFC佈局學習前端
- 前端佈局基礎概述前端
- Web前端——JavaScript練習Web前端JavaScript
- 《從零構建前後分離的web專案》:前端完善 – 手把手教你快速構建網站佈局Web前端網站
- 《從零構建前後分離的web專案》:前端完善 - 手把手教你快速構建網站佈局Web前端網站
- Vue練手專案(包含typescript版本)VueTypeScript
- 10個Python練手專案Python
- 簡單專案實戰flutter(佈局篇)Flutter
- 【前端】書客編輯器Web版v1.0 - HTML佈局前端WebHTML
- 移動 WEB 開發的佈局方式 ---- 響應式佈局Web
- web移動佈局所需:remWebREM
- 前端面試之居中佈局前端面試
- 前端面試1:CSS佈局前端面試CSS
- 前端網頁佈局全解析前端網頁
- 前端開發常見佈局前端
- 前端成神之路-移動web開發之響應式佈局前端Web
- Swift 專案總結 03 自定義 CollectionView 佈局SwiftView