调用css文件

来源:互联网 发布:达索猎鹰900淘宝图片 编辑:程序博客网 时间:2024/05/19 06:14
以链接的形式调用外部CSS文件
<Head>
<link rel="stylesheet" type="text/css" href="Css.css" />
</Head>

或者直接将CSS写在页面中
<Head>
<style type="text/css">
<!--
body {
font-family: "宋体";
font-size: 12px;
font-style: normal;
line-height: normal;
font-weight: normal;
text-decoration: none;
}

-->
</style>
 
原创粉丝点击