---
title: "centrera menyn"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/160981-centrera-menyn"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "Vinnaren"
published: "2007-05-31T17:31:24.000Z"
updated: "2007-05-31T18:08:52.000Z"
replies: 2
views: 289
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/160981-centrera-menyn"
---

# centrera menyn

## #1 — Vinnaren, 2007-05-31T17:31Z

Hej

Hur får jag min meny centrerad med hjälp av css?

Har följande kod:

```
#bottom {
	background-image:url(../bilder/top_bakgrund.gif);
	background-repeat:repeat-x;
	height:32px;
}

#bottom ul{
	float: left; 
	font:12px Verdana, Helvetica, sans-serif;
	padding:0;
	padding-top:10px;
	width:300px;
}
#bottom li{
	display: inline;
}

        <div id="bottom">
        	<ul>
            	   <li>Start</li>
                <li>Email</li>
             </ul>          
        </div>
```

 

hur löser jag detta??

Tacksam för all hjälp  :stud

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

## #2 — joser, 2007-05-31T18:03Z

```
#bottom ul{
        margin-right:auto;
        margin-left:auto;
}
```

eller med shorthand

```
#bottom ul{
        margin:0 auto;
}
```

och

```
#bottom ul{
        padding:10px 0 0 0;
}
```

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

## #3 — Vinnaren, 2007-05-31T18:08Z

tack, den översta funkade   :bire

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/160981-centrera-menyn
