- 如何让字体显示的更舒服?
-
发布时间:2010-10-29 13:52:30
发布时间:2010-10-29 13:52:30
这需要利用到CSS(层叠样式表),目前约定俗成的字体是:{ font-family: 宋体(GB); font-size: 9pt; line-height: 16px },把这段代码加入到<head></head>之间。如:
<head>
<style>
<!--
.font { font-family: 宋体(GB); font-size: 9pt; line-height: 16px }
-->
</style>
</head>
<body>
<p class="font">计算机世界报<br>
网页制作常见问题解答</p>
</body>
font-family: 宋体(GB)是设置的字体;font-size: 9pt是字体的大小;line-height: 16px是文本行的上下间隔。