Zur Navigation

bestimmten div bestimmtes css zuweisen ?

1 Gustafsson

moin,
mir gelingt es einfach nicht bestimmten div`s bestimmte anweisungen aus dem *.css file zu zuweisen ? wie müsste ich da vorgehen ?

danke
gust.

<p class="blablub"> funktioniert nicht

<body>

<div style="margin:auto; width: 750px; height: 505px; z-index: 1; background-color: #008000; text-align:left" id="Ebene1">
	
<div style="position: absolute; width: 710px; height: 50px; z-index: 1; margin-left: 20px; margin-top: 35px; background-color: #FFFFFF" id="Ebene2"></div>

<div style="position: absolute; width: 146px; height: 350px; z-index: 2; margin-left: 19px; margin-top: 135px; background-color: #FFFFFF" id="Ebene3"></div>

<div style="position: absolute; width: 515px; height: 207px; z-index: 3; margin-left: 215px; margin-top: 135px; background-color: #FFFFFF" id="Ebene4"></div>

<div style="position: absolute; width: 400px; height: 100px; z-index: 4; float: right; margin-left: 241px; margin-top: 175px; background-color: #808000" id="Ebene5">
<p>Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. </p></div>
	
</div>

</body>

02.11.2005 12:24

2 Jörg Kruse

Hallo Uwe,

du hast zwei Möglichkeiten, ein HTML-Element aus einer CSS-Datei heraus zentral anzusprechen: als Klasse oder als ID. Eine Klasse kannst du innerhalb einer HTML-Datei mehrfach verwenden, eine ID nur einmal

1. als ID

im HTML-Teil:

<p id="blablub">Text</p>

im CSS-Teil mit einer Raute im Selektor:

p#blablub {
color:red;
}

2. als Klasse

im HTML-Teil:

<p class="blablub">Text</p>

im CSS-Teil mit einem Punkt im Selektor:

p.blablub {
color:red;
}

Falls es auch so nicht funktioniert, ist die CSS-Datei womöglich nicht richtig eingebunden oder es gibt dort einen Syntaxfehler.

mfG Jörg

02.11.2005 12:39

3 Gustafsson

;-) besten dank, nun hat es funktioniert.

cu gust.

.

02.11.2005 15:00

Beitrag schreiben (als Gast)

Die Antwort wird nach der Überprüfung durch einen Moderator freigeschaltet.





[BBCode-Hilfe]