---
title: "ol - ul"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/106988-ol-ul"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "Jesper T"
published: "2004-07-09T14:16:33.000Z"
updated: "2004-07-09T17:24:04.000Z"
replies: 2
views: 307
page: 1
pages: 1
language: "sv-SE"
site: "webForum — webforum.nu"
rights: "Upphovsrätten till varje inlägg tillhör dess författare."
attribution: "Citera som: webForum, https://www.webforum.nu/amne/html-css/106988-ol-ul"
---

# ol - ul

## #1 — Jesper T, 2004-07-09T14:16Z

Jag använder denna för att styla ul-lisor men ol-listor vill jag skall se ut som vanligt\*. Hur åstakommer jag det.

\*
&nbsp;&nbsp;&nbsp;1.
&nbsp;&nbsp;&nbsp;2.
&nbsp;&nbsp;&nbsp;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;}
```

Permalänk: https://www.webforum.nu/p/106988

## #2 — Ankman, 2004-07-09T15:02Z

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;}
```

Permalänk: https://www.webforum.nu/p/1384150

## #3 — icaaq, 2004-07-09T17:24Z

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

Permalänk: https://www.webforum.nu/p/1384223

---

Tråden på webben: https://www.webforum.nu/amne/html-css/106988-ol-ul
