1. 程式人生 > >前端學習筆記--布局和旋轉案例

前端學習筆記--布局和旋轉案例

20px 9.png otto asi 筆記 sid 文件 float head

要實現的案例:

技術分享圖片

1.分析布局

技術分享圖片

2.劃分文件結構:

技術分享圖片

3.編寫css代碼

* {
    padding: 0;
    margin: 0;
}

body {
    font-size: 16px;
    color: burlywood;
}

#container {
    width: 900px;
    margin: 0 auto;
}

#header {
    height: 220px;
    margin-bottom: 5px;
}

#nav {
    /*導航*/
    height: 40px;
    background-color: aqua;
    margin-bottom: 5px;
    font: 18px/30px;
    /*字體大小   行高*/
    color: black;
    letter-spacing: 2px;
    /*字符間距*/
    text-align: center;
}

#main {
    height: 900px;
    overflow: hidden;
    margin-bottom: 5px;
}

#aside {
    width: 300px;
    height: 900px;
    background-color: rgb(53, 162, 235);
    float: left;
    margin-right: 5px;
    text-align: center;
    font-size: 14px;
}

#content {
    height: 900px;
    width: 595px;
    float: left;
    background-color: #cff;
}

#footer {
    text-align: center;
    height: 70px;
    color: black;
    background-color: #6cf;
    clear: both;
    line-height: 70px;
}

效果圖:

技術分享圖片

4.

前端學習筆記--布局和旋轉案例