<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                合規國際互聯網加速 OSASE為企業客戶提供高速穩定SD-WAN國際加速解決方案。 廣告
                首先我們先來打開經管系網頁,看看網頁效果是怎么樣的。通過所學Web前端開發的知識,我們一步一步模仿出標準的網頁。我們知道DIV+CSS可以實現網頁模塊的總體布局,這基本取代了HTML中用table布局,DIV+CSS布局 更加靈活,改寫代碼方便。 經管系原網頁截圖: ![](https://box.kancloud.cn/2016-04-28_5721559c50d4b.jpg) ![](https://box.kancloud.cn/2016-04-28_5721559c750a4.jpg) 我先開始做網頁的整體模塊布局草圖: ![](https://box.kancloud.cn/2016-04-28_5721559c8c0e4.jpg) 下面開始編寫代碼: 第一次HTML代碼: ~~~ <span style="font-size:18px;"><!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"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>經管系</title> <link rel="stylesheet" href="Style.css" type="text/css" /> </head> <body> <!--經管系Logo板塊--> <div id="top">Dreamweaver8</div> <!--經管系網頁導航欄板塊--> <div id="nav"></div> <!--經管系網頁風采展示廣告板塊--> <div id="adpic"></div> <!--經管系內容板塊--> <div id="news"> <div id="news_left"> <div id="news_left_top"></div> <div id="news_left_mid"></div> <div id="news_left_bottom"></div> </div> <div id="news_mid"> <div id="news_mid_top"></div> <div id="news_mid_bottom"></div> </div> <div id="news_right"> <div id="news_right_top"></div> <div id="news_right_mid"></div> <div id="news_right_bottom"></div> </div> </div> <!--經管系網站友情鏈接板塊--> <div id="link"></div> <!--經管系網站制作信息板塊--> <div id="copyright"></div> </body> </html></span> ~~~ CSS樣式表Style.css代碼: ~~~ <span style="font-size:18px;">/*第一次添加的代碼*/ * { margin:0px; padding:0px; } body { padding:0px; margin:0px; font-size:12px; } #top { background-image: url(images/head.jpg); background-repeat: no-repeat; height: 120px; width: 998px; margin-right: auto; margin-left: auto; } #nav { background-image: url(images/n_nav_bg.gif); background-repeat: repeat-x; height: 37px; width: 998px; margin-right: auto; margin-left: auto; } #adpic { background-image: url(images/h4.jpg); background-repeat: no-repeat; height: 218px; width: 998px; margin-right: auto; margin-left: auto; } #news { height: 720px; width: 998px; margin-right: auto; margin-left: auto; } #link { background-image: url(images/n_title_bg.gif); background-repeat: repeat-x; height: 40px; width: 998px; margin-right: auto; margin-left: auto; } #copyright { background-color: #E2E2E2; height: 80px; width: 998px; margin-top: 0px; margin-right: auto; margin-left: auto; border-top-width: 5px;/*設置5像素的上邊框*/ border-top-style: solid; border-top-color: #006042; margin-bottom: 0px; } #news #news_left { float: left; height: 720px; width: 233px; margin-right: 5px; } #news #news_mid { float: left; height: 720px; width: 455px; margin-right: 5px; } #news #news_right { height: 720px; width: 300px; float: left; } #news #news_left #news_left_top { height: 248px; width: 233px; background-color:#FF0000; } #news #news_left #news_left_mid { height: 240px; width: 233px; background-color:#00FF00; } #news #news_left #news_left_bottom { height: 232px; width: 233px; background-color:#0000FF; } #news #news_mid #news_mid_top { height: 488px; width: 455px; background-color:#000000; } #news #news_mid #news_mid_bottom { height: 232px; width: 455px; background-color:#999999; } #news #news_right #news_right_top { height: 248px; width: 300px; background-color:#FFFF00; } #news #news_right #news_right_mid { height: 240px; width: 300px; background-color:#00FFFF; } #news #news_right #news_right_bottom { height: 232px; width: 300px; background-color:#FF00FF; }</span> ~~~ 瀏覽器運行的結果為: ![](https://box.kancloud.cn/2016-04-28_5721559ca88fc.jpg) ![](https://box.kancloud.cn/2016-04-28_5721559cc2993.jpg) ![](https://box.kancloud.cn/2016-04-28_5721559cd113a.jpg)
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看