Changing spacing between paragraphs and inside of

2019-02-18 05:11发布

I found a similar topic, to this, but I can't find the specific CSS to change in Wordpress. If you go to my homepage Or blog

I want to change the spacing within and between paragraphs. Not sure which element I need to modify in my CSS.

Found a line-height property for .body, but that doesn't seem to do what I want.

1条回答
可以哭但决不认输i
2楼-- · 2019-02-18 05:37

Between paragraphs you should set a margin for that element. Between lines within the paragraph you can use line-height. For example:

p {
  line-height: 32px;   /* within paragraph */
  margin-bottom: 30px; /* between paragraphs */
  }

enter image description here

查看更多
登录 后发表回答