日期:2014-05-17  浏览次数:20497 次

链接CSS文件的方式
链接CSS文件有几种方式:

1. link标签引用

<head>
	<link rel="stylesheet" type="text/css" href="http://www.john.com/style.css" />
</head>


2. @import标签

<head>
        <style type="text/css">@import url(http://www.john.com/style.css);</style>
</head>