簡體   English   中英

標簽背景顏色不起作用

[英]label background-color not working

<%@ 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 = hour的背景顏色? 我在哪里弄錯了? 請幫忙 ! 我刷新了代碼,請自行測試!

您的代碼在這里和jsfiddle中都可以正常工作,所以問題可能出在您有另一個css規則,強制跨度不具有背景色。

您可以嘗試在background-color行的末尾添加!important,以檢查其是否正常運行。

祝好運 。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM