---
title: "CSS-trubbel"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/1521-css-trubbel"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "soffan76"
published: "2001-10-25T11:15:00.000Z"
updated: "2001-10-25T11:30:00.000Z"
replies: 1
views: 150
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/1521-css-trubbel"
---

# CSS-trubbel

## #1 — soffan76, 2001-10-25T11:15Z

Varför fungerar inte detta? Hur ska man skriva? Länken "Sida" påverkas inte alls...

```

------------CSS-----------

body
{
  	font-family : Arial, Helvetica, sans-serif;
    font-size:10pt;
	font-style: normal;
	color:  #999999;}
	
A:LINK {
	font-family : Arial, Helvetica, sans-serif;
	font-size:10pt;
	font-style : normal;
	font-weight:bold ;
	color : #999999;
	text-decoration: none;

}

A:VISITED {
	font-family : Arial, Helvetica, sans-serif;
	font-size:10pt;
	font-style : normal;
	font-weight:bold ;
	color : #999999;
	text-decoration: none;

}

A:HOVER {
		font-family : Arial, Helvetica, sans-serif;
		font-size:10pt;
		color: #d24238;
		text-decoration: none;
}

TD{
	font-family : Arial, Helvetica, sans-serif;
	font-style : normal;
	font-size : 12;
	color : #999999;
	text-decoration: none;
}
.meny{
	font-size : 10;
}
.rubrik{
	font-size : 12;
}
----------------------------

---------HTML---------------

<tr><td class="meny"><a href="sida.html">Sida</A></td></tr>
```

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

## #2 — sundog, 2001-10-25T11:30Z

Jo, det funkar. Du måste glömt nåt basic, kolla igenom igen...

det här funkade...

```
<html>
<head>
<style>
body
{
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style: normal;
color: #999999;}

A:LINK {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style : normal;
font-weight:bold ;
color : #999999;
text-decoration: none;

}

A:VISITED {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
font-style : normal;
font-weight:bold ;
color : #999999;
text-decoration: none;

}

A:HOVER {
font-family : Arial, Helvetica, sans-serif;
font-size:10pt;
color: #d24238;
text-decoration: none;
}

TD{
font-family : Arial, Helvetica, sans-serif;
font-style : normal;
font-size : 12;
color : #999999;
text-decoration: none;
}
.meny{
font-size : 10;
}
.rubrik{
font-size : 12;
}
</style>
</head>
<body>
<table>
<tr><td class="meny"><a href="sida.html">Sida</A></td></tr>
</table>
</body>
</html>
```

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

---

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