欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

ASP.NET母版

程序员文章站 2022-04-06 18:49:19
...
//母版代码
<head runat="server">
    <title></title>
    <link rel="stylesheet" type="text/css" href="css/index.css" />
    <asp:ContentPlaceHolder id="head" runat="server">
    </asp:ContentPlaceHolder>
    <style type="text/css">

    </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <div class="img">

        </div>
        <div class="bar">
            <div class="item"><a href="">比赛</a></div>
            <div class="item"><a href="">状态</a></div>
            <div class="item"><a href="">题库</a></div>
            <div class="item"><a href="">题库</a></div>
        </div>
        <div class="con">
            <asp:ContentPlaceHolder id="ContentPlaceHolder1" runat="server">
            </asp:ContentPlaceHolder>
        </div>
        <div class="foot">
            <div class="it">
                <a href="">百度</a>
                <a href="">新浪</a>
                <a href="">微博</a>
            </div>
        </div>
    </div>
    </form>
</body>
//css文件
body 
{
    
}
.img
{
    background-image:url('../images/23725.jpg');
    width:600px;
    height:200px;
    margin:0 auto;
}
.bar
{
    background-color:#EEE685;
    width:600px;
    height:50px;
    margin:0 auto;
}
.bar .item
{
    width:25%;
    height:50px;
    line-height:50px;
    text-align:center;
    float:left;
    
}
.con
{
    width:600px;
    height:300px;
    margin:0 auto;
}
.foot
{
    background-color:#EEE685;
    width:600px;
    height:100px;
    margin:0 auto;
}
.foot .it
{
    margin:0 auto;
    line-height:100px;
    text-align:center;
}
.foot .it a
{
    
    margin:0 10px;
    
}