作者:崔颖2849464 | 来源:互联网 | 2022-09-25 02:45
调整方法:1、使用line-height属性,可以设置行间的距离;2、使用margin-top和margin-bottom属性,可以设置上下外边距;3、使用padding-top和padding-bottom属性,可以设置上下内边距。
调整方法:1、使用line-height属性,可以设置行间的距离;2、使用margin-top和margin-bottom属性,可以设置上下外边距;3、使用padding-top和padding-bottom属性,可以设置上下内边距。
本教程操作环境:windows7系统、CSS3&&HTML5版、Dell G3电脑。
1、line-height设置段落上下间距
设置p标签上下间距css代码
p{ line-height:30px}
2、margin-top和margin-bottom设置段落上下间距
p{margin-top:10px;margin-bottom:10px}
经由对p标签设置margin-top和margin-bottom,从而来设置段落上下间距。
margin-top可以设置元素的顶部外边距,margin-bottom可以设置元素的底部外边距。
3、padding-top和padding-bottom设置段落上下间距
p{padding-top:10px;padding-bottom:10px}
padding-top可以设置元素的顶部内边距,padding-bottom可以设置元素的底部内边距。
示例:
效果图:
(学习视频分享:css视频教程)
以上就是css上下间距怎么调的详细内容,更多请关注其它相关文章!