如何从段落的第二行开始缩进?
我试过了
p {
text-indent: 200px;
}
p:first-line {
text-indent: 0;
}
Run Code Online (Sandbox Code Playgroud)
和
p {
margin-left: 200px;
}
p:first-line {
margin-left: 0;
}
Run Code Online (Sandbox Code Playgroud)
和
(with position:relative;)
p {
left: 200px;
}
p:first-line {
left: 0;
}
Run Code Online (Sandbox Code Playgroud)