html – 将页面分成2个半部分(顶部和底部)

前端之家收集整理的这篇文章主要介绍了html – 将页面分成2个半部分(顶部和底部)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想将一个页面分成两半(不是一列),而是分成一行(顶部和底部),并给出2个颜色,一个用于顶部,一个用于底部.

解决方法

demo on dabblet.com

HTML:

<div id="top">top</div>
<div id="bottom">bottom</div>

CSS:

#top,#bottom {
    position: fixed;
    left: 0;
    right: 0;
    height: 50%;
}

#top {
    top: 0;
    background-color: orange;
}

#bottom {
    bottom: 0;
    background-color: green;
}
原文链接:https://www.f2er.com/html/242536.html

猜你在找的HTML相关文章