首页 > Web开发 > 详细

CSS3 auto revolution practitioner!

时间:2016-07-25 16:16:04      阅读:264      评论:0      收藏:0      [点我收藏+]

1.html

<!DOCTYPE html>
<html>
<head>
    <title></title>
    <meta charset="utf-8" />
    <link href="styles/autoresolution.css" rel="stylesheet" />
</head>
<body>
    <div class="page">
        <div class="left">
            left
        </div>
        <div class="right">
            right
        </div>
        <div class="clear">

        </div>
        <div class="bottom">
            bottom
        </div>

    </div>
</body>
</html>

  2.style sheet

body {
    width: 100%;
}

/*basic universal settings for page main parts*/
.page {
    background-color: #fff;
}

    .page > .left {
        background-color: #f00;
        float: left;
    }

    .page > .right {
        background-color: #f0f;
        float: right;
    }

    .page > .bottom {
        background-color: #00f;
        width: 100%;
    }

.clear {
    clear: both;
}


/*page width bigger than 1024 strategy*/
@media screen and (min-width:1024px) {
    .left {
        width: 40%;
    }

    .right {
        width: 60%;
    }
}

@media screen and (max-width:1024px) {
    .left {
        width: 100%;
    }

    .right {
        width: 100%;
    }
}

  

CSS3 auto revolution practitioner!

原文:http://www.cnblogs.com/hualiu0/p/5703784.html

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