css行间距怎么设置

CSS指的是层叠样式表,可以用CSS来修改网页的格式 。下面,我们来看看css行间距怎么设置吧 。
输入代码
在<body>主体中输入两行文字,如下图所示:
css行间距怎么设置

css行间距怎么设置

然后再用<br/>分段,如下图所示:
css行间距怎么设置

再输入type样式表,主要是用来放CSS代码内容的,如下图所示:
css行间距怎么设置

【css行间距怎么设置】

输入CSS内容
然后再输入CSS内容,即可看到行间距变化,如下图所示:
总代码
<style type="text/css">
body{font-size:12pt;line-height:3}
</style>
</head>

<body>
<body>
hello world 01 <br/>
hello world 02
</body>
css行间距怎么设置