zoukankan      html  css  js  c++  java
  • 最为纯粹简单的后台管理页面框架

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>在线报名系统</title>
        <style type="text/css">
            /*开始   初始CSS模板   开始*/body, div, address, blockquote, iframe, ul, ol, dl, dt, dd, li, dl, h1, h2, h3, h4, h5, h6, p, pre, table, caption, th, td, form, legend, fieldset, input, button, select, textarea
            {
                margin: 0;
                padding: 0;
                font-weight: normal;
                font-style: normal;
                font-size: 100%;
                font-family: inherit;
            }
            html, body
            {
                height: 100%;
                overflow:hidden;
            }
            ol, ul, li
            {
                list-style: none;
            }
            img
            {
                border: 0;
            }
            body
            {
                color: #000;
                background: #FFF;
                text-align: left;
                font: 12px/1.5 Arial, Helvetica, sans-serif;
            }
            .clear
            {
                clear: both;
                height: 1px;
                margin-top: -1px;
                width: 100%;
            }
            /*结束  初始CSS模板  结束*/
            
            #head
            {
                /*margin:2px  auto;*/
                margin: 0px;
                height: 25px;
                width: 100%;
                background: #B0CFFA;
                border-bottom: solid 1px #B0CFFA;
                vertical-align :bottom;
                position:absolute;
                top:0px;
            }
            #head p
            {
                margin-left: 10px;
                color: #FFFFFF;
            }
            #content
            {
                width: 100%;
                height: auto;
                position:absolute;
                overflow:auto;
                top:26px;
                bottom:20px;
            }
            #content .left
            {
                float: left;
                width: 200px;
                height: 100%;
                vertical-align: top;
                border-right:solid 1px #B0CFFA;
            }
            #content .right
            {
                overflow: auto;
                background: silver;
                height: 100%;
               
            }
            #fotter
            {
                background: #0099CC;
                height: 20px;
                width: 100%;
                border-top: solid 1px blue;
                position:absolute;
                bottom:0px;
            }
        </style>
    </head>
    <body>
        <form id="form1" runat="server">
        <div id="head">
            <p>
                欢迎观临最为纯粹简单的后台管理系统平台</p>
        </div>
        <div id="content">
            <div class="left">
                <a href="Default.aspx" target="mainFram">测试链接</a><br />
                <a href="http://www.cnblogs.com" target="mainFram">博客园</a><br />
                <a href="http://www.CSDN.net" target="mainFram">CSDN</a>
            </div>
            <div class="right">
                <iframe name="mainFram" frameborder="0" scrolling="auto" height="100%" width="100%">
                </iframe>
            </div>
        </div>
        <div id="fotter">
            <p>
                今天是星期四,2014年7月10日</p>
        </div>
        </form>
    </body>
    </html>
    
     
  • 相关阅读:
    如何将网格式报表打印成其它样式
    拥有与实力不相称的脾气是种灾难——北漂18年(23)
    8.8.1 Optimizing Queries with EXPLAIN
    mysql 没有rowid 怎么实现根据rowid回表呢?
    secondary index
    8.5.5 Bulk Data Loading for InnoDB Tables 批量数据加载
    mysql 中key 指的是索引
    8.5.4 Optimizing InnoDB Redo Logging 优化InnoDB Redo 日志
    8.5.3 Optimizing InnoDB Read-Only Transactions 优化InnoDB 只读事务
    8.5.1 Optimizing Storage Layout for InnoDB Tables InnoDB表的存储布局优化
  • 原文地址:https://www.cnblogs.com/hangwq/p/3836705.html
Copyright © 2011-2022 走看看