Changing spacing between paragraphs and inside of paragraphs

最后都变了- 提交于 2019-11-30 05:02:00

问题


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:


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 */
  }



来源:https://stackoverflow.com/questions/41253908/changing-spacing-between-paragraphs-and-inside-of-paragraphs

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!