---
title: "Netscape =("
type: "forum-thread"
url: "https://www.webforum.nu/amne/html-css/757-netscape"
topic: "HTML & CSS"
topic_url: "https://www.webforum.nu/amne/html-css"
author: "-torlejf-"
published: "2001-01-04T13:01:00.000Z"
updated: "2001-01-04T13:08:00.000Z"
replies: 1
views: 165
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/757-netscape"
---

# Netscape =(

## #1 — -torlejf-, 2001-01-04T13:01Z

Hejsan!
Jag har ett problem med Netscape å tabeller.

Jag har denna koden:

```
<TABLE BORDER="0" WIDTH="432" HEIGHT="517" CELLPADDING="0" CELLSPACING="0">
 <TR>
    <TD WIDTH="432" HEIGHT="100" COLSPAN="4"><IMG SRC="top_news.gif"></TD>
 </TR>
 <TR>
    <TD WIDTH="21" HEIGHT="200" BGCOLOR="#DFDFDF"></TD> <----- DETTA SKA SE UT SOM EN KANT!
    <TD WIDTH="15" HEIGHT="200" BGCOLOR="#FFFFFF"></TD>
    <TD WIDTH="374" HEIGHT="200" BGCOLOR="#FFFFFF" ALIGN="left" VALIGN="top">
Här ska det stå text!
    </TD>
    <TD WIDTH="22" HEIGHT="200" BGCOLOR="#DFDFDF"></TD>  <----- DETTA SKA SE UT SOM EN KANT!
 </TR>
 <TR>
    <TD WIDTH="432" HEIGHT="62" COLSPAN="4"><IMG SRC="bottom.jpg"></TD>
 </TR>
</TABLE>
```

Problemet är att BGCOLOR funkar inte i netscape. Det syns helt enkelt inte.
Hur kan man lösa detta.
Vad är fel?

Tacksam för svar.

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

## #2 — Patrik Nylin, 2001-01-04T13:08Z

Lägg in ett mellanslag med hjälp av & nbsp; (fast ihopskrivet) i kanten.

Så här:

```
<TABLE BORDER="0" WIDTH="432" HEIGHT="517" CELLPADDING="0" CELLSPACING="0">
<TR>
<TD WIDTH="432" HEIGHT="100" COLSPAN="4"><IMG SRC="top_news.gif"></TD>
</TR>
<TR>
<TD WIDTH="21" HEIGHT="200" BGCOLOR="#DFDFDF">& nbsp;</TD> <----- DETTA SKA SE UT SOM EN KANT!
<TD WIDTH="15" HEIGHT="200" BGCOLOR="#FFFFFF"></TD>
<TD WIDTH="374" HEIGHT="200" BGCOLOR="#FFFFFF" ALIGN="left" VALIGN="top">
Här ska det stå text!
</TD>
<TD WIDTH="22" HEIGHT="200" BGCOLOR="#DFDFDF">& nbsp;</TD> <----- DETTA SKA SE UT SOM EN KANT!
</TR>
<TR>
<TD WIDTH="432" HEIGHT="62" COLSPAN="4"><IMG SRC="bottom.jpg"></TD>
</TR>
</TABLE>
```

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

---

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