---
title: "streckad tabellram ?"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/75766-streckad-tabellram"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "Pellefant"
published: "2003-05-03T15:31:44.000Z"
updated: "2003-05-03T15:45:21.000Z"
replies: 3
views: 264
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/75766-streckad-tabellram"
---

# streckad tabellram ?

## #1 — Pellefant, 2003-05-03T15:31Z

Hej!

Har denna koden, men hur får jag en tabellram att bli "streckad" (dotted). Nu blir det ingen streckning alls om jag har en vanlig tabell ? Måste man ge tabellen namn på något sätt?

```
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<STYLE type="text/css">
   <!--
   BODY {
   scrollbar-face-color: 6f0000;
   scrollbar-highlight-color: 282828;
   scrollbar-3dlight-color: cccccc;
   scrollbar-darkshadow-color: 000000;
   scrollbar-shadow-color: 000000;
   scrollbar-arrow-color: cccccc;
   scrollbar-track-color: black;
   }
   .newstable {border-right: dotted; border-left: dotted; border-top: dotted; border-bottom: dotted; border-width: 2px; border-color: #6f0000;}
   -->
   </STYLE>
</head>
<BODY bgcolor="#000000" text="#FFFFFF" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
```

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

## #2 — Peter S, 2003-05-03T15:33Z

```
...
<table class="newstable"...
...
```

 :)

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

## #3 — Sebbe, 2003-05-03T15:35Z

Det lättaste vore väl att köra med den här (korta) koden?

```
[i]CSS[/i]
.newstable {
border: dotted 2px #6F0000;
}

[i]Tabell[/i]
<table class="newtable">
```

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

## #4 — Pellefant, 2003-05-03T15:45Z

Tack för hjälpen båda, funkar toppen :) Nu lärde jag mig något nytt.

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/75766-streckad-tabellram
