CSS导入使用及引用的两种方法
方法一
<link rel="stylesheet" type="text/css" href="test.css">
方法二
<style type="text/css">
@import url("http://localhost/demo.css");
</style>
起点在哪,或许选择不了。重要的是,你追求的终点在哪!
方法一
<link rel="stylesheet" type="text/css" href="test.css">
方法二
<style type="text/css">
@import url("http://localhost/demo.css");
</style>