---
title: "Borde till tabell med CSS"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/81111-borde-till-tabell-med-css"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "juventus1"
published: "2003-07-02T09:09:40.000Z"
updated: "2003-07-02T09:27:36.000Z"
replies: 2
views: 201
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/81111-borde-till-tabell-med-css"
---

# Borde till tabell med CSS

## #1 — juventus1, 2003-07-02T09:09Z

Hej!

Jag har lite problem med att översätta detta till CSS:

```
<table cellspacing="0" cellpadding="2" border="1" bordercolor="#CCCCCC" align="center">
```

Just nu har jag:

```
<table class="mainTable">

.mainTable { height: 400px; border: #CCCCCC; border-style: solid; border-top-width: 2px; border-right-width: 2px; border-bottom-width: 2px; border-left-width: 2px}
```

Men det ser inte likadant ut (kolla gärna på bilderna). Hur ska man göra?

Bilagor:

- [bild.jpg](https://www.webforum.nu/a/1671.jpg)

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

## #2 — Engine^, 2003-07-02T09:18Z

```
.mainTable
{
  border-color: #cccccc;
  border-style: solid;
  border-width: 2px;
  height: 400px;
}
```

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

## #3 — juventus1, 2003-07-02T09:27Z

Nej, det blev inte riktigt som jag ville. Men jag lyckades lösa det. Man var tvungen att formatera cellerna också för att få samma effekt

```
.mainTable { height: 400px; border: solid 2px #CCCCCC; border-collapse: collapse; }
.mainCell { border: solid 2px #CCCCCC; }
```

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/81111-borde-till-tabell-med-css
