---
title: "CSS"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/142837-css"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "joksi"
published: "2006-02-22T10:19:47.000Z"
updated: "2006-03-05T12:23:09.000Z"
replies: 4
views: 384
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/142837-css"
---

# CSS

## #1 — joksi, 2006-02-22T10:19Z

a:hover { text-decoration: none; color: white; background-color: #009acc; }

vill att ovan ska gälla bara för text länkar, alltså inte att bilder som är länkade får en bakgrund!

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

## #2 — Josef, 2006-02-22T16:55Z

Flyttas från Kolla min hemsida!

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

## #3 — Troxy, 2006-02-22T17:52Z

Då får du ange attributen speficikt för bilderna:

```
a:hover img { text-decoration: [...]; color: [...]; background-color: [...]; }
```

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

## #4 — Insider, 2006-02-22T18:23Z

> **Troxy skrev:**
>
> Då får du ange attributen speficikt för bilderna:
>
>
> ```
> a:hover img { text-decoration: [...]; color: [...]; background-color: [...]; }
> ```

Den där koden selekterar bara \<img\> och påverkar inte länkarna.

Du får skilja ut dina textlänkar med klasser.

```
a.textlink:hover {}
```

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

## #5 — echoSwe, 2006-03-05T12:23Z

> **Troxy skrev:**
>
> Då får du ange attributen speficikt för bilderna:
>
>
> ```
> a:hover img { text-decoration: [...]; color: [...]; background-color: [...]; }
> ```

Man kan inte sätta color eller text-decoration på bilder.

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

---

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