---
title: "cellspacing och cellpadding"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/170415-cellspacing-och-cellpadding"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "stavve"
published: "2008-04-02T07:28:24.000Z"
updated: "2008-04-04T09:58:59.000Z"
replies: 3
views: 588
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/170415-cellspacing-och-cellpadding"
---

# cellspacing och cellpadding

## #1 — stavve, 2008-04-02T07:28Z

Hej om jag vill sätta cellspacing och cellpadding via Css hur skriver jag då i css koden?

tex 

table
{
border:0;
cellpadding:0; \<-------funkar ej!!

}

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

## #2 — headbug, 2008-04-02T07:31Z

Du sätter det inte på table, utan på td.

så 

```
td
{
padding: 0px;
margin: 0px;
}
```

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

## #3 — zcorpan, 2008-04-02T20:20Z

Alternativt 

```
table { border-collapse:collapse; }
```

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

## #4 — stavve, 2008-04-04T09:58Z

tackar funkar fint båda alternativen

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/170415-cellspacing-och-cellpadding
