标签:text 上下 设置 实现 自动 oct log span 文字
使用CSS行高样式line-height可以设置调整p行间距,但是同时会影响每行文字间的上下间距,所以使用line-height虽然可以用来设置html p 行距离间隔,但是不是很实用,一般line-height只设置上下文字间间距。
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <style> p{ margin:0 auto}; /* 设置p上下距离为0,左右自动 */ </style> </head> <body> <p>第一段1<br />第一段2</p> <p>第二段1<br />第二段2</p> <p>第三段1<br />第三段2</p> </body> </html>
设置margin:0 auto;可以实现p行距离为零。
标签:text 上下 设置 实现 自动 oct log span 文字
原文地址:http://www.cnblogs.com/u-lhy/p/7052508.html