我用的dreamweaver,我该怎么做,谢谢?
2 回答
炎炎设计
TA贡献1808条经验 获得超4个赞
让一个html文档调用两个css文件,我们可以在<head></head>那,通过link这个标签来引用,href来链接你外部css的文件就可以,这里有段代码:
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>index</title>
<link rel='stylesheet' type='text/css' href='./css/index1.css'>
<link rel='stylesheet' type='text/css' href='./css/shop.css'>
通过这个来设置就可以了,就可以引用外部的文件了。
拉莫斯之舞
TA贡献1820条经验 获得超10个赞
在<head>..</head>中加入<link href="第一个.css" rel="stylesheet" type="text/css" /><link href="第二个.css" rel="stylesheet" type="text/css" />....爱几个就几个。
- 2 回答
- 0 关注
- 1080 浏览
添加回答
举报
0/150
提交
取消