p {
text-indent: 10px;
}
Solution 2:
use the unicode of a non breaking space.
p::before {
content: "\00a0 ";
}
Solution 3:
p::first-letter {
border-left: 1em solid red;
}
p {
text-indent: 10px;
}
p::before {
content: "\00a0 ";
}
p::first-letter {
border-left: 1em solid red;
}
No comments:
Post a Comment