首页 > Web开发 > 详细

HTML div Frame

时间:2016-10-15 22:53:20      阅读:379      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Document</title>
    <style>
        body{
            margin: 0 auto;
            width: 100%;
        }
        .container{
            min-width: 900px;
            border: 1px solid #FA1111;
        }
        .top{
            width: 100%;
            height: 70px;
            border: 1px solid #14F613;
        }
        .minframe{
            width: 100%;
            display: inline;
            background-color: #ACA7A7;
        }
        .menu{
            float: left;    
            height: 600px;
            width: 150px;
            border: 1px solid #0C21F9;
        }
        .right{
            height: 600px;
            border: 1px solid #FD010F;
        }
        .footer{
            height: 50px;
            text-align: center;
            border: 1px solid #030303;
        }

    </style>
</head>
<body>
    <div class="container">
        <div class="top"> this is banner !!</div>
        <div class="minframe">
            <div class="menu"> menu</div>
            <div class="right">content</div>
        </div>
        
        <div class="footer">footer</div>
    </div>
</body>
</html>


本文出自 “风中的一粒沙” 博客,请务必保留此出处http://libinqi456.blog.51cto.com/4819343/1862204

HTML div Frame

原文:http://libinqi456.blog.51cto.com/4819343/1862204

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!