码迷,mamicode.com
首页 > Web开发 > 详细

HTML div Frame

时间:2016-10-15 22:55:12      阅读:369      评论:0      收藏:0      [点我收藏+]

标签:display   border div   

<!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

标签:display   border div   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!