Wie kann ich ab der zweiten Zeile eines Absatzes einrücken?
ich habe es versucht
p {
text-indent: 200px;
}
p:first-line {
text-indent: 0;
}
und
p {
margin-left: 200px;
}
p:first-line {
margin-left: 0;
}
und
(with position:relative;)
p {
left: 200px;
}
p:first-line {
left: 0;
}