当我想将一种CSS样式应用于asp标签时,我有一个奇特的结果。样式实际上只有部分效果,例如background-color
和颜色等属性生效,宽度和高度不生效。我不明白为什么。
ASP
<div id="wrap">
<div id="left" class="Tablestyle">
<asp:Label ID="Label1" runat="server" Text="Entry Number: " class="Tablestyle"></asp:Label>
<br /><div class="separator"> </div>
<asp:Label ID="Label3" runat="server" Text="ID Number: " class="Tablestyle"></asp:Label>
<br /><div class="separator"> </div>
<asp:Label ID="Label2" runat="server" Text="Type: " class="Tablestyle"></asp:Label>
</div>
<div id="Mid"> </div>
<div id="right">
<asp:Label ID="IdBox" runat="server" class="TableStyleInfo"></asp:Label>
<br /><div class="separator"> </div>
<asp:Label ID="IdNumBox" runat="server" class="TableStyleInfo"></asp:Label>
<br /><div class="separator"> </div>
<asp:Label ID="TypeBox" runat="server" class="TableStyleInfo"></asp:Label>
</div>
</div>
CSS
#wrap
{
width:555px;
margin:auto;
text-align:center;
}
#Mid
{
width:5px;
height:330px;
float:left;
background-color:White;
}
#right
{
width:400px;
float:left;
text-align:left;
background-color:Yellow;
}
#left
{
width:150px;
float:left;
text-align:right;
background-color:Green;
}
.separator
{
height:4px;
line-height:4px;
background-color:White;
}
.Tablestyle
{
width:150px;
height:20px;
text-align:right;
color:white;
font-weight:bold;
background-color:#507CD1;
}
.TableStyleInfo
{
width:400px;
height:20px;
text-align:left;
color:Black;
background-color:#EFF3FB;
}
我尝试将class
更改为CssClass
,但没有任何相同的事情发生。
如果有人可以指出我的错误或者给我一个提示,为什么我不能应用宽度和高度属性,我将非常感激。
答案 0 :(得分:1)
<asp:Label>
转换为html <span>
元素,该元素是内联元素,没有宽度或高度。您可以通过将它们更改为css中的块级元素来强制执行此操作:
.Tablestyle {
display: block; // add this
width: 150px;
height: 20px;
text-align: right;
color: white;
font-weight: bold;
background-color: #507CD1;
}
.TableStyleInfo {
display: block; // add this
width: 400px;
height: 20px;
text-align: left;
color: Black;
background-color: #EFF3FB;
}