• html布局


    1.div

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style type="text/css">
    body{
    margin: 0px;
    }
    #container{
    100%;
    height: 950px;
    background-color: darkgray;
    }
    #heading{
    100%;
    height: 10%;
    background-color: antiquewhite;
    }
    #content_menu{
    30%;
    height: 80%;
    background-color: cadetblue;
    float: left;
    }
    #content_body{
    70%;
    height: 80%;
    background-color: darksalmon;
    float: left;
    }
    #footing{
    100%;
    height: 10%;
    background-color: cornflowerblue;
    clear: left;
    }
    </style>
    </head>
    <body>
    <div id="container">
    <div id="heading"></div>
    <div id="content_menu"></div>
    <div id="content_body"></div>
    <div id="footing"></div>
    </div>
    </body>
    </html>

    2.table

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>Title</title>
    </head>
    <body marginheight="0px" marginwidth="0px">
    <table width="100%" height="950px" style="background-color: darkgray">
    <tr>
    <td colspan="2" width="100%" height="10%" style="background-color: rebeccapurple">
    </td>
    </tr>
    <tr>
    <td width="30%" height="80%" style="background-color: blue"></td>
    <td width="70%" height="80%" style="background-color: gold"></td>
    </tr>
    <tr>
    <td colspan="2" width="100%" height="10%" style="background-color: aquamarine"></td>
    </tr>
    </table>
    </body>
    </html>
  • 相关阅读:
    管理上第一是用人
    意义只存在于关系中,由其定义
    苦与累在希望面前啥也不是
    人是一切,组织是一切
    UI设计
    以理服人需要什么?
    灵活性是原则性基础上的灵活
    软件行业深层的文化属性
    自然原始分工
    把一个系统维护好需要做哪些工作?
  • 原文地址:https://www.cnblogs.com/huoran1120/p/5941746.html
Copyright © 2020-2023  润新知