Webstatt.org - Community seit 2006 - 2012 (2024?)

CSS Hintergrundbild wird im FF net angezeigt.

Avatar user-125
04.05.2006 22:29

Hallo,

folgendes Problem: Ich will ne Hintergrundgrafik einfügen. Das klappt in allen Browsern (Opera, Konquer). Nur der FireFox stellt sich dumm.

HTML-Datei:
<html>
<head>
<title>nicht ohne jasper</title>
<style type="text/css" media="all">@import "./style.css";</style>
</head>
<body>
</body>
</html>


CSS-Datei:
body {
background: url('stuppp.jpg'zwinkern repeat-x;
background-color: #637656;
margin: 0;
padding: 0;
}

Liebe user-125y aka user-125 aka dionysos
user-137
05.05.2006 09:41

Wiso den so?

<style type="text/css" media="all">@import "./style.css";</style>


Also ich kenne es nur so:

<link rel="stylesheet" href="./style.css" type="text/css" />

Avatar user-162
05.05.2006 11:07

das ist die etwas fortgeschrittene Variante die auch die älteren IE versionen berrücksichtigt... (glaube ichlächeln )

Perfection is not when there’s nothing to add, but when there’s nothing to take away swisscheek.com/magazine
Avatar user-125
05.05.2006 11:20

Ja, aber ne Idee hat auch keiner?

Liebe user-125y aka user-125 aka dionysos
Avatar user-349
05.05.2006 11:52

sagt die Konsole auch nix dazu?

Avatar user-125
05.05.2006 12:29

Ich habs nun hinbekommen.

HTML:
<?xml version="1.0"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta name="generator" content="HTML Tidy, see www.w3.org" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
<title>
sebastian eiweleit - private website and blog
</title>
<style type="text/css" media="all">@import "./themes/default/widgets/style.css";</style>

</head>
<body>


CSS:
 html {
padding:0px;
margin:0px;
}

body {
background: url('stuppp.jpg'zwinkern repeat-x;
background-color: #637656;
margin: 0;
padding: 0;
text-align: center;
}

Liebe user-125y aka user-125 aka dionysos