如何获取图像<ul type =“”style =“”>?

时间:2017-05-17 03:52:13

标签: c# html css asp.net

风格

<style>
  ul{
    list-style-image: url('../8iAbk7rjT.png');
  }
</style>

编码

<ul>
  <asp:DataList ID="dd" runat="server">
    <ItemTemplate>
        <li><a href="/Pages/index.aspx?category=<%#Eval("id") %>">
          <%#Eval("name") %></a></li>
        <hr />
     </ItemTemplate>
  </asp:DataList>
</ul>

如何在asp.net中以UL样式获取图像。    任何解决方案??

1 个答案:

答案 0 :(得分:0)

在asp.net中没有什么特别的事要做。这是CSS问题。您的代码很好,只需检查图片网址是否正确。

ul{
   list-style-image: url('http://forums.androidcentral.com/images/smilies/cool.png');
   padding: 0 0 0 30px;
   margin: 0 0 0 15px;
}