鎏字代表什么生肖:关于网站的问题

来源:百度文库 编辑:杭州交通信息网 时间:2024/04/29 23:55:45
我做了一个网站,做好后发现字体会随着IE的字体设置大小改变,很不好看,请问怎么才能锁定网页字体的大小,让它不随着IE的字体设置而改变!请写出代码!
楼下回答的只能锁定部分字体,怎么锁定全部字体!

用CSS设定字体大小,比较简单的可以用一句来把全页的字体都设成一样大:

<style type="text/css">
* {
FONT-SIZE: 9pt;
}
</style>
放在<HEAD>段内。

建议具体学一下CSS,对网页制作很有用。

楼上正解

设定字体样式
<STYLE>
td,p,form { font-family: "宋体"; font-size: 12px; font-style: normal; line-height: 160%; font-weight: normal}
font.topic { font-family: "宋体"; font-size: 16px; font-style: normal; line-height: 160%; font-weight: bold}
a:hover { font-family: "宋体"; font-size: 12px; font-style: normal; font-weight: normal}
a:link { font-family: "宋体"; font-size: 12px; font-style: normal; line-height: 140%; font-weight: normal;color: #000000;text-decoration: none}
a:visited { font-family: "宋体"; font-size: 12px; font-style: normal; line-height: 140%; font-weight: normal;color: #102993;text-decoration: none}

a.blue:link { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ffffff;text-decoration: none}
a.blue:hover { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal; color: #0066cc;text-decoration: none}
a.blue:visited { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ffffff;text-decoration: none}
a.green:link { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ffffff;text-decoration: none}
a.green:hover { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal; color: #cccc66;text-decoration: none}
a.green:visited { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ededcb;text-decoration: none}
a.orange:link { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ffffff;text-decoration: none}
a.orange:hover { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal; color: #ff9900;text-decoration: none}
a.orange:visited { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ffdba4;text-decoration: none}
a.yellow:link { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ffffff;text-decoration: none}
a.yellow:hover { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal; color: #ffcc00;text-decoration: none}
a.yellow:visited { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #fff3c4;text-decoration: none}
a.purple:link { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #ffffff;text-decoration: none}
a.purple:hover { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal; color: #6666cc;text-decoration: none}
a.purple:visited { font-family: "宋体"; font-size: 14px; font-style: normal; line-height: 140%; font-weight: normal;color: #d2d2f0;text-decoration: none}
</STYLE>