ooAlbert
2013-01-11, 21:56:43
Hi,
ich versuche Text in einem DIV zu formatieren, jedoch wird die Formatierung von "H1" durch die Formatierung von "Inhalt" überschreiben. Das Ziel sollte eigentlich sein, das man Text in das DIV schreiben kann ohne Zeilenumbrüche und Einrückungen speziell angeben zu müssen.
CSS
#inhalt {
white-space:pre;
margin:0px;
padding:0px;
position:absolute;
left:150px; top:130px;
width: 650px;
height: 410px;
color: #151515;
font-family:Verdana;
font-weight:bold;
font-size: 0.75em;
}
h1 {
font-weight: bold;
font-size: 1em;
font-family: Verdana;
color: black;
margin:0px;
padding:0px;
}
HTML
<p ID="inhalt">
<h1>Überschrift</h1>
Text Text
</p>
Falls da wer eine Idee zu hat :)
Grüße
ich versuche Text in einem DIV zu formatieren, jedoch wird die Formatierung von "H1" durch die Formatierung von "Inhalt" überschreiben. Das Ziel sollte eigentlich sein, das man Text in das DIV schreiben kann ohne Zeilenumbrüche und Einrückungen speziell angeben zu müssen.
CSS
#inhalt {
white-space:pre;
margin:0px;
padding:0px;
position:absolute;
left:150px; top:130px;
width: 650px;
height: 410px;
color: #151515;
font-family:Verdana;
font-weight:bold;
font-size: 0.75em;
}
h1 {
font-weight: bold;
font-size: 1em;
font-family: Verdana;
color: black;
margin:0px;
padding:0px;
}
HTML
<p ID="inhalt">
<h1>Überschrift</h1>
Text Text
</p>
Falls da wer eine Idee zu hat :)
Grüße