Re: ol - ul
ul li{
list-style: url(../images/bullet.gif) inside;
line-height: 16px;
list-style-type: none;
margin-left:15px
}
ul, ul li {padding:0; margin:0;}
2 svar · 307 visningar · startad av Jesper T
Jag använder denna för att styla ul-lisor men ol-listor vill jag skall se ut som vanligt*. Hur åstakommer jag det.
*
1.
2.
3.
li{
list-style: url(../images/bullet.gif) inside;
line-height: 16px;
list-style-type: none;
margin-left:15px
}
ul, li {padding:0; margin:0;}
Re: ol - ul
ul li{
list-style: url(../images/bullet.gif) inside;
line-height: 16px;
list-style-type: none;
margin-left:15px
}
ul, ul li {padding:0; margin:0;}
Detta kanske är vad du söker
[red]
ul li{
list-style: url(../images/bullet.gif) inside;
line-height: 16px;
list-style-type: none;
margin-left:15px
}
ol li
{
list-style-type: decimal;
}
ol, ul, li
{
padding: 0;
margin: 0;
}
[/red]
mv icaaq