Gridview CSS background-image IE8 不工作
我在母板页里写了下面这段style:
<style type="text/css">
.ListHead2
{
background-color: #E0E3E8;
height: 20px;
color: #000000;
font-family: Tahoma, Arial, Verdana, Tahoma, Arial;
font-size: 8.5pt;
font-weight: normal;
text-align: left;
cursor: default;
font-weight: normal;
background-image:url(../images/img_mnusep.gif);
background-repeat: no-repeat;
padding-left: 8px;
padding-right: 2px;
border : 0px;
border-bottom : solid 1px #A0A0A4;
}
</style>
然后我在内容页里有这样一个gridview:
<asp:GridView ID="myGridView" runat="server" AutoGenerateColumns="False" HeaderStyle-CssClass="ListHead2"
CssClass="List" BorderWidth="0px" DataKeyNames="criterionId" Width="100%">
<Columns>
<asp:TemplateField>
相关问答:
CSS code:
body {
}
#x
{
width:1024px;
height:768%;
background-color:Red;
position:relative;
}
#x.top
{ position:absolute;
width:800px;
height:100px;
top:0px ......
如题!! 最好能够多浏览器支持!!!
CSS code:
<style type="text/css">
<!--
.fixTop {
Z-Index:102;
position:relative;
Top:expression(this.offsetPare ......
HTML code
<html>
<head>
<title>直接输入的Excel表格 </title>
<style>
<!--
table.formdata{
border:1px solid #5F6F7E;
border-collapse:collaps ......
position:relative不是相对定位吗~~为什么用了边偏移定位后有些人就说是变成了绝对定位了……~~而且它与margin来确定位置有什么不同~~
边偏移定位后有些人就说是变成了绝对定位了
re:
谁说的!真是不象话!positi ......
请问html中哪些标签的哪些属性默认状态下是能够被子代所继承的?比如我写了如下代码:
<ul>
<li id="first"><a href="#">帮助</a></li& ......