母版排版

来源:互联网 发布:java软件开发和程序员 编辑:程序博客网 时间:2024/05/01 20:42

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="MasterPage.master.cs" Inherits="MasterPage" %>

<!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 id="Head1" runat="server">
    <title>无标题页</title>
    <asp:ContentPlaceHolder id="head" runat="server">
    </asp:ContentPlaceHolder>
    <style type="text/css">
        .content
        {
         padding:0px; margin:0px auto; width:910px; height:auto;
        }
        .top
        {
            width: auto;
            height: 125px;
          
        }
        .biaohan
        {
         width:auto; height:60px; background-color:Red; 
        }
        .zhong
        {
         width:auto; height:auto; 
        }
        .left
        {
         float:left; height:380px; width:220px; background-color:#e5e5e5; text-align:center; 
        }
        .left ul
        {
          list-style:none; height:225px; width:100px;
        }
        .left li
        {
         height:25px; width: 97px; margin:5px;
        }
        .left a
        {
          display:block; width:99px; height:23px; color:White; text-decoration:none; background-color:#5aa815 
        }
        .left a:hover
        {
         background-color:Red; color:Blue; 
        }
        .left a:last
        {
         background-color:Black; 
        }
        .right
        {
         float:left; height:380px; width:690px;  background-color:;
        }
        .dibu
        {
         width:910px; height:40px; background-color:#0978af; 
        }
        .style1
        {
            width: 910px;
            height: 40px;
            background-color: #0978af;
            text-align: center;
            font-size: x-large;
            margin-top:auto;
        }
    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div class="content">
    <div class="top">
        <asp:Image ID="Image1" runat="server" ImageUrl="~/images/9e49d54e.bmp.bmp"
            Height="118px" Width="905px" />
        </div>
    <div class="biaohan"></div>
    <div class="zhong">
    <div class="left">
    <ul>
    <li><a href=#>学生管理</a></li>
    <li><a href=#>管理员管理</a></li>
    <li><a href=#>密码修改</a></li>
    <li><a href=#>系统注销</a></li>
    </ul>
    </div>
    <div class="right">
        <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
       
        </asp:ContentPlaceHolder>
    </div>
    </div>
    <div class="style1"><ul><li style=" margin-top:10px"><strong>@ 版权所有:任丘市政府教育办公室</strong></li></ul></div>
    </div>
    </form>
</body>
</html>

 

原创粉丝点击