3-9 BulletedList导航条实例


<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
    <title></title>
    <style type="text/css">
        .style1
        {
            margin: 0px; padding:0px;
            border-bottom:1px solid #ccc; border-top:1px solid #ccc;
            background-image:url(imgs/back_navbar.png);
        } 
        .style1 li
        {
            display:inline-block;
            padding:15px 30px 15px 30px;
            border-right:1px solid #ddd;
        }
        .style a
        {
            color:#666;
            text-decoration:none;
        }
        .style a:hover
        {
            color:Red;
        }
     </style>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:BulletedList ID="BulletedList1" runat="server" CssClass="style1" DisplayMode="HyperLink">
            <asp:ListItem>我要自学网</asp:ListItem>
            <asp:ListItem>百度</asp:ListItem>
            <asp:ListItem>淘宝</asp:ListItem>
            <asp:ListItem>腾讯</asp:ListItem>
        </asp:BulletedList>
    </div>
    </form>
</body>
</html>


相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-10-22
  • 2021-12-30
  • 2022-12-23
  • 2022-02-10
  • 2022-12-23
猜你喜欢
  • 2021-05-01
  • 2021-12-24
  • 2021-12-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案