---
title: "CSS bakgrund i IE7"
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/157834-css-bakgrund-i-ie7"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "firstchoice"
published: "2007-03-04T16:05:12.000Z"
updated: "2007-03-04T16:36:08.000Z"
replies: 2
views: 286
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/157834-css-bakgrund-i-ie7"
---

# CSS bakgrund i IE7

## #1 — firstchoice, 2007-03-04T16:05Z

Har en bakgrundsbild i en TD tagg, som infogas via min CSS mall.
Detta funkar fint i IE6, men inte i Firefox samt IE7
vad är fel?

```
.top-banner {
	background-attachment: fixed;
	background-image:  url('images/top3.jpg');
	background-repeat: no-repeat;
	background-position: center center;
```

```
<td colspan="2" height="170" valign="top" class="top-banner"><img src="images/logo.gif" width="144" height="66" align="top"></td>
```

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

## #2 — Fuel, 2007-03-04T16:09Z

flytta height="170" bl.a från din TD tagg till Stilmallen. Fixed behövs inte.

```
.top-banner {
    height: 170px;
    vertical-align: top;
    background-image:  url('images/top3.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-color: ?;
}
```

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

## #3 — firstchoice, 2007-03-04T16:36Z

tack! :)

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

---

Tråden på webben: https://www.webforum.nu/amne/html-css/157834-css-bakgrund-i-ie7
