文字对齐不能在IE中工作?

时间:2016-05-13 11:37:48

标签: html css google-chrome internet-explorer

我试图定位我的" li"要内联,所以我在一行中有三个图像,并在它们下面有文本(如产品目录视图)。到目前为止,我的代码使用chrome看起来很好,但IE另一方面只将左边的所有内容对齐。

CSS:

#products ul{
    margin:0px;
    padding:0px;
    margin-top: 50px;
}
#products li{
    list-style-type:none;
    float:left;
    display:inline; 
    height:auto;
    padding: 10px 10px;

}
#products img{
    max-width:250px;
    padding:20px;
    float:left;

}
#products ul li p{
    text-align:center;
    font-weight:200;
    font-family:Verdana, Geneva, Tahoma, sans-serif;

HTML:

<HeaderTemplate>
        <div id="products">

            <h2>ALL PRODUCTS</h2>
            <ul>
        </HeaderTemplate>
        <ItemTemplate>
            <li><a href="<%# Eval("ProductID", "Productdetails.aspx?ProductID={0}")%>"><img src="<%#Eval("ProductImage") %>" /></a>
                 <p><%#Eval("ProductName") %></p>
                 <p>$<%# Eval("ProductPrice") %></p></li>

        </ItemTemplate>
        <FooterTemplate>
            </ul>
            </div>
        </FooterTemplate>

1 个答案:

答案 0 :(得分:0)

试试这个:

#products li a {
    display: block;
}