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>
    
     
  • 相关阅读:
    算法:javascript截取字符串
    【转】解决memcached启动失败
    Ubuntu 16.04 安装 Apache, MySQL, PHP7
    phpstorm2016.3+xdebug调试
    (转)微信开发连接SAE数据库
    php图片上传服务器
    大数据整体市场规模达1000亿,金融、政务等行业应用占据七成份额
    “AI智客计划”
    人工智能 :眼纹识别技术大显神通,一眼认出你
    AI 芯片,是金山还是泡沫?
  • 原文地址:https://www.cnblogs.com/hangwq/p/3836705.html
Copyright © 2011-2022 走看看