首页htmlui_olHTML Element Style - 如何在li项下添加底边框

HTML Element Style - 如何在li项下添加底边框

我们想知道如何在li项下添加底边框。

<html>
<head>
    <style type="text/css" media="screen">
        li{
            border-bottom:solid #c9c9c9 1px;
            background:url(/bullet.gif) no-repeat 0 0;
            list-style:none;
            margin:0;
            padding-left:20px;
        }
    </style>
</head>
<body>
    <ul>
        <li>example</li>
        <li>example</li>
        <li>example</li>
        <li>example</li>
        <li>example</li>
    </ul>
</body>
</html>