慈航心是什么意思:front page 网页制作的问题

来源:百度文库 编辑:杭州交通信息网 时间:2024/05/02 06:33:12
1.我用front page做网页时,设计时字体比六浏览时要小些,为什么啊,因为这个,网页常常在设计时很好看,浏览时却出了问题.
2.我输入文字时,默认是3号,我每次输入完了后都要调整,怎么改变默认字体大小啊

4月18日 18:53 请把下面的代码考到FrontPage的空白网页,在"预览视图"下观看效果,供参考

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>指定</title>
</head>
<body>
<table border="1" width="800" cellspacing="0" cellpadding="0" height="600"

id="table1"align="center">
<tr>
<td width="600" height="200" >
<center style="font-size:12pt;font-weight:bold;line-height:180%;">
<p >指定(table/td/)的各项数值均使用像素单位
<p >在设计视图下,在表格内右键/单元格属性(/表格属性)/指定宽度(/指定高度)/点

选像素单位
</center>
</td>
</tr>
<tr>
<td width="600" height="300"align="center" bgcolor="#008080">
<center style="font-size:14pt;font-weight:bold;line-height:150%;">
<p style="color:red">字体设置使用“style="............."”,在改变浏览器字体设置

时,就不会变了
<p style="color:#ff00ff">其中:font-size=:16pt大小
<p style="color:#00ffff">其中:font-weight=加粗
<p style="color:#000000">其中:line-height=行距(字高的%)
<p style="color:#00ff00">其中:color=颜色
<p style="color:#ffff00">更多请参照CSS教程
</center>
</td>
</tr>
</table>
</body>
</html>