---
title: "meny+css"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/1815-meny-css"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "soffan76"
published: "2002-01-30T12:37:00.000Z"
updated: "2002-01-30T14:50:00.000Z"
replies: 2
views: 195
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/1815-meny-css"
---

# meny+css

## #1 — soffan76, 2002-01-30T12:37Z

Hej!

Jag har en meny med undermenyer.
Undermenyn ska vara röd och i mindre storlek. Detta funkar men inte att de ändrar färg när man för över musen. Om nån kan hjälpa mig vore jag tacksam!

```
A:LINK {
	font-family : Verdana,Arial, Helvetica, sans-serif;
	font-style : normal;
	font-weight:bold ;
	text-decoration: none;
}

A:VISITED {
	font-family : Verdana,Arial, Helvetica, sans-serif;
	font-style : normal;
	font-weight:bold ;
	text-decoration: none;
}

A:HOVER {
	font-family : Verdana,Arial, Helvetica, sans-serif;
	font-style : normal;
	font-weight:bold;
	text-decoration: none;
}

.meny{
	font-size : 10px;
	color: #cc0000;
}

.rubrik{
	font-size : 12px;
	color: #000000;
}
```

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

## #2 — Sico, 2002-01-30T14:33Z

Lägg in color i a:hover

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

## #3 — eas, 2002-01-30T14:50Z

```
A {
font-family: Verdana,Arial, Helvetica, sans-serif;
font-style: normal;
font-weight: bold ;
text-decoration: none
}

A.meny{ font-size : 10px; color: cc0000 }
A.meny:hover { color: blue }

A.rubrik{ font-size : 12px; color: #000000 }
A.rubrik:hover { color: red }
```

Använd den här koden istället så funkar det :)

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

---

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