网页中行距段距如何设置?不要CSS模式的。

来源:百度知道 编辑:UC知道 时间:2024/06/05 16:04:09
如题
主要是网站发文的需要,不是网页设计。
那岂不是每一行都要单独设定了?有没有好像<font c olor=#333 366>这样的没有结束标签的这类型的设定。

<p style="line-height:25px">这是行高25像素</p>
<p style="margin:10px 0;">这是行上下各间距10px</p>
<p style="padding:10px 0;">这是行上下各填充10px</p>

你要不想写独立的,那就这样咯。
<div style="line-height:25px">
<p>这是行高都是25像素</p>
<p>这是行高都是25像素</p>
<p>这是行高都是25像素</p>
</div>

得看你怎么排版了如果放在一个TD里<td><font style="color=#333366;line:height:25px;" >中间是文字</font></td>

也可以把他写在<table>里
<table style="color=#333366;line:height:25px;" >
<tr>
<td>中间是文字</td></tr></table>