---
title: "Centrerad tabell"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/117411-centrerad-tabell"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "joonas"
published: "2004-12-05T15:07:56.000Z"
updated: "2004-12-05T15:26:56.000Z"
replies: 4
views: 471
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/117411-centrerad-tabell"
---

# Centrerad tabell

## #1 — joonas, 2004-12-05T15:07Z

Tjenare!

enkal fråga, hur centrerar man en tabel med css?

HTML kod:

```php
<table class=mainouter width=100% border="1" cellspacing="0" cellpadding="10">
```

 

CSS:

```php
table.mainouter {
  	background-color: #F0F2F4;
}
```

 

jag kan bara ändra i css filen!

tackar

//joonas

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

## #2 — frankof, 2004-12-05T15:17Z

Re: Centrerad tabell

```
<table class=mainouter width=100% border="1" cellspacing="0" cellpadding="10">
```

 

CSS:

```
table.mainouter {
  	background-color: #F0F2F4; [b]margin-left:auto; margin-right:auto;[/b]
}
```

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

## #3 — icaaq, 2004-12-05T15:18Z

Vill centrera tabellen eller innehållet i tabellen?

mv icaaq

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

## #4 — joonas, 2004-12-05T15:26Z

Det löste sig, jag körde med:

```php
body {
  text-align: center;
  }

table.mainouter {
  margin: 0 auto;
  width: 90%;
  background-color: #F0F2F4;
  }
```

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

## #5 — ade, 2004-12-05T15:26Z

Acceptera svaret då ;)

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/117411-centrerad-tabell
