CSS specifies that the beginning of the p tag is automatically empty with two spaces

When we make some paragraphs, especially dynamic official websites, we need to consider that there will be two spaces at the top of each line automatically. This is a standard paragraph display form.

I will default to using the p paragraph tag here.

Just add to p

p{
  text-indent:2em;
}

In this way, there will be two spaces at the beginning of all p tags

insert image description here

Guess you like

Origin blog.csdn.net/weixin_45966674/article/details/130172194