+ -
当前位置:首页 → 问答吧 → 请问段落跟段落之间的行距怎么调?

请问段落跟段落之间的行距怎么调?

时间:2010-10-14

来源:互联网

请问段落跟段落之间的行距怎么调?
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <style type="text/css"> <!-- p { font-size: 12px; line-height: 20px; text-indent: 24px; } --> </style> </head> <body> <p>文字文字文字文字文字文字文字文字文字</p> <p>文字文字文字文字文字文字文字文字文字</p> </body> </html>
 提示:您可以先修改部分代码再运行

作者: kevinlu   发布时间: 2010-10-14


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title></title> <style type="text/css"> <!-- p { font-size: 12px; text-indent: 24px; margin:0; padding:0; line-height: 100%; } --> </style> </head> <body> <p>外补白margin定义行间距</p> <p>外补白margin定义行间距</p> <p style="margin:10px 0;">外补白10px行距</p> <p>外补白margin定义行间距</p> <p>外补白margin定义行间距</p> <p style="height:100px">&nbsp;</p> <p>内补白padding样式定义行间距</p> <p>内补白padding样式定义行间距</p> <p style="padding:20px 0;">内补白20px行距</p> <p>内补白padding样式定义行间距</p> <p>内补白padding样式定义行间距</p> <p style="height:100px">&nbsp;</p> <p>行高line-height样式定义行间距</p> <p>行高line-height样式定义行间距</p> <p style="line-height:60px">行高60px行距</p> <p>行高line-height样式定义行间距</p> <p>行高line-height样式定义行间距</p> </body> </html>
 提示:您可以先修改部分代码再运行
[ 本帖最后由 yyq0514 于 2010-10-14 10:26 编辑 ]

作者: yyq0514   发布时间: 2010-10-14

谢谢了

作者: kevinlu   发布时间: 2010-10-14