在html中怎么引入css
1 回答
慕侠2389804
TA贡献1719条经验 获得超6个赞
如果样式不多你可以直接在页面里写,比如:
<style type=text/css>
div{color:#fff;}
</style>
如果是引入外部的一个样式文件,在头部<head></head>里引入,比如:
<link rel="stylesheet" type="text/css" href="css/reset.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
href="样式文件的路径"
- 1 回答
- 0 关注
- 481 浏览
相关问题推荐
添加回答
举报
0/150
提交
取消