---
title: "CSS trubbel"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/45167-css-trubbel"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "Riri"
published: "2002-06-04T08:26:40.000Z"
updated: "2002-06-04T08:30:06.000Z"
replies: 2
views: 206
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/45167-css-trubbel"
---

# CSS trubbel

## #1 — Riri, 2002-06-04T08:26Z

Hur kommer det sig att min "right" inte funkar på tabelldata fælten?

```
........
............
...............
<style type="text/css">
<!--
table {font:10px arial;}

input {font:10px arial;}

table.InputTable {background-color: DBD0D0;}

th { border-color: #000080 #000080 #000080 #000080;
		 border-style: solid solid solid solid;
		 border-width: 1px 1px 1px 1px; }

right { border-right: 25px solid blue; }

-->
</style>
<title>Graph generator</title>
</head>
<body bgcolor="#F0EBEB">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td height="73">

        <br />

        <form name="Type" method="post" action="parseNordeaXML.asp">
        <table class="InputTable" width="400" border="0" cellspacing="0" cellpadding="5" align="center">
        <tr>
        <th colspan="2">
        <center><b>Grey Graph Gen</b></center>
        <br />
        </th>

        </tr>
        <tr>
          <td >Column graph data</td>
          <td ><input type="radio" name="type" value="0" checked></td>
        </tr>
        <tr >
		  <td class="right">Line graph data</td>
		  <td ><input type="radio" name="type" value="1"></td>
.....................
................
.........
```

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

## #2 — hypatia, 2002-06-04T08:29Z

Du måste ha en punkt före klass-namnet när du gör egna klasser. :)

```
.right { border-right: 25px solid blue; }
```

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

## #3 — Matte, 2002-06-04T08:30Z

Det saknas en punkt före right:

**.**right { border-right: 25px solid blue; }

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/45167-css-trubbel
