标签背景颜色不起作用

时间:2014-10-19 07:57:01

标签: html css asp.net

<%@ Master Language="C#" %>
<%@ Import Namespace="System.Globalization" %>

<!DOCTYPE html>

<script runat="server">
    void page_load()
    {
        PersianCalendar pc = new PersianCalendar();
        day.Text = pc.GetDayOfWeek(DateTime.Now).ToString();
        hour.Text = string.Format("{0} : {1} : {2}", DateTime.Now.Hour, DateTime.Now.Minute, DateTime.Now.Second);
    }
</script>

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <style type="text/css">
        body{
            background-color:#FFFACD;
        }
        #Main{
            margin:5px;
        }
        #Title{
            background-color:#F0FFFF;
            height:50px;
            position:relative;
            top: 0px;
            left: 0px;
        }
        #Title span{
            background-color:#FDF5E6;
            text-align:center;
            font-family:"Sakkal Majalla";
            font-size:larger;
            margin-top:7px;
            border:solid 1px #DEB887;
            display:block;
            width:60px;
            height:35px;
            float:left;
        }
         #hour{
            background-color:red;
        }
    </style>
    <title></title>
    <asp:ContentPlaceHolder id="head" runat="server">
    </asp:ContentPlaceHolder>
</head>
<body>
    <form id="form1" runat="server">
        <div id="Main">
            <div id="Title">
                <span style="float:right;margin-right:10px;">به نام خداوند جان و خرد</span>
                <span style="margin-left:5px"><asp:Label runat="server" ID="hour">aaa</asp:Label></span>
                <span style=" ">ساعت</span>
                <span style=" "><asp:Label runat="server" ID="day" BorderWidth="0px" Font-Names="Sakkal Majalla" Font-Size="Large" BackColor="#3366FF" Height="15px"></asp:Label></span>
                <span style=" ">امروز</span>
            </div>
        </div>
    </form>
</body>
</html>
对我来说真的很奇怪!这里是完整的代码...为什么不改变label_id =小时的背景颜色???哪里弄错了?请帮忙 !我刷新了代码,请自行测试一下!

1 个答案:

答案 0 :(得分:2)

你的代码在这里和jsfiddle工作,所以问题可能是你有另一个css规则强迫span没有背景颜色。

您可以尝试在背景颜色行的末尾添加!important,以检查它是否正常工作。

祝你好运。

相关问题