Schon die einfachsten Probleme: Text wird nicht in Arial gezeigt!

Status
Nicht offen für weitere Antworten.

Sk3l3tor

Erfahrenes Mitglied
Hi,

bin ein totaler Neuling in CSS.

Dies ist meine CSS:

Code:
body {
 font: 12pt Arial;
 color: #000000;
 margin: 5px;
 }
a:link {
		 color: #000000;
		 text-decoration: none;
 }
a:visited {
		 color: #000000;
		 text-decoration: none;
 }
a:hover, a:active {
		 color: #000000;
		 text-decoration: underline;
 }

#text {
		 font: 12pt Arial;
		 color: #000000;
		 margin: 5px;
		 }

Meine HTML:

HTML:
<div style="text-align:center" class="text">
						 <p align="justify">
						 Text<br><br>
						 Text
						 </p>
</div>

Aber der Text wird nicht in Arial gezeigt, Warum?

Danke
 
Entweder gibst du dem DIV die ID #text, oder die Klasse .text, aber nicht beides ;)
 
Danke für die schnelle Antwort, aber leider funktioniert es noch immer nicht :(

Das margin übernimmt er zwar, aber nicht das font!
 
Bei mir werden die CSS-Angaben einwandfrei übernommen / ausgeführt :confused:

Alternative (einzelne) Schriftformatierung:

Code:
font-family: arial;
font-size: 12pt;
color: #000000;
 
Bei mir will es einfach nicht:

Code:
body {
 font-family: arial;
 font-size: 12pt;
 color: #000000;
 margin: 5px;
 }
p {
 font: 12pt arial;
 margin-top: 0px;
 text-align: justify;
 }
a:link {
		 color: #000000;
		 text-decoration: none;
 }
a:visited {
		 color: #000000;
		 text-decoration: none;
 }
a:hover, a:active {
		 color: #000000;
		 text-decoration: underline;
 }
.text {
 font: 12pt arial;
		 color: #000000;
		 margin: 5px;
		 text-align: center;
		 }

HTML:

HTML:
<link rel="stylesheet" type="text/css" href="../css/style.css">
</head>
<body background="Bilder/layout_02.gif">
<b><p align="center"><br>
<br>
Willkommen beim</p></b><br><br>
<p align="center">
<img border="0" src="header/bbcdueren.gif" width="198" height="79"></p>
<br>
<br>
<div class="text">
						 <p>Der 1. BBC Düren
						 &quot;The Wizards&quot; e. V. besteht seit 1985. Zur Zeit haben wir 162
						 Mitglieder, die auf 11 Mannschaften im Jugend- und Seniorenbereich verteilt
						 sind. Wir haben Mannschaften in der Kreisliga, in der Bezirksliga und in der
						 Jugendoberliga. Zusätzlich bieten wir auch Basketball für unter
						 10-Jährige an.<br><br>
						 In unserem Gästebuch und in unserem Forum können Sie uns Verbesserungsvorschläge
						 machen und unter &quot;News&quot; finden sich alle Neuigkeiten.</p>
</div>

</body>

Auch zu finden unter http://www.bbc-dueren.de/Normal/index1.php
 
Wie gesagt, bei mir werden die CSS-Formatierungen einwandfrei dargestellt (auch bei deiner verlinkten Demo-Seite).
 
Status
Nicht offen für weitere Antworten.
Zurück