亚洲免费乱码视频,日韩 欧美 国产 动漫 一区,97在线观看免费视频播国产,中文字幕亚洲图片

      1. <legend id="ppnor"></legend>

      2. 
        
        <sup id="ppnor"><input id="ppnor"></input></sup>
        <s id="ppnor"></s>

        div+css制作上左右下的框架頁(yè)面

        字號(hào):


            標(biāo)準(zhǔn)的div+css制作上左右下的框架頁(yè)面
            首先是css代碼:
            <style type=text/css>
            <!--
            *{margin:0px;padding:0px;border:0px;list-style-type:none; font-size:12px;text-decoration: none;}
            .hd{width: 960px;overflow: hidden;background-color: #33ccff;height: 100px;margin-right: auto;margin-left: auto;}
            .bd {width: 960px;overflow: hidden;background-color: #bbcade;margin-right: auto;margin-left: auto;margin-top: 8px;margin-bottom: 8px;}
            .bd .l_pt1 {width: 200px;overflow: hidden;background-color: #663366;float: left;height: 200px;clear: left;}
            .bd .l_pt2 {width: 200px;overflow: hidden;background-color: #666;height: 200px;margin-top: 8px;clear: left;float: left;}
            .bd .r_pt {background-color: #33ccff;margin-left:200px;}
            .clear {font-size: 0px;clear: both;overflow: hidden;line-height: 0px;height: 0px;}
            .ft {width: 960px;overflow: hidden;background-color: #33ccff;height: 100px;margin-right: auto;margin-left: auto;}
            接下來(lái)是div:
            <div class=hd>此處顯示 class hd 的內(nèi)容</div>
            <div class=bd>
            <div class=l_pt1>fdsf</div>
            <div class=l_pt2>fdsafasf</div>
            <div class=r_pt>
            <p>dsdasdsadasd</p>
            </div>
            <div class=clear></div>
            </div>
            <div class=ft>此處顯示 class hd 的內(nèi)容</div>