我已经在服务器上传了我的网页,但是如果我从浏览器保存我的页面并且在打开网页时,style.css不活动...如何将style.css激活到我的网站? 我用过这个,
<link rel="stylesheet" href="../style.css" type="text/css" media="screen"/>
答案 0 :(得分:2)
看到这个并检查你的路径
案例1
|-style.css
|-index.html
<link rel="stylesheet" href="style.css" type="text/css" media="screen"/>
案例2
|-style.css
|-folder
|-index.html
<link rel="stylesheet" href="../style.css" type="text/css" media="screen"/>
案例3
|-css
|-style.css
|-folder
|-index.html
<link rel="stylesheet" href="../css/style.css" type="text/css" media="screen"/>
答案 1 :(得分:0)
使用Firefox扩展FireBug调试代码并定义问题 https://www.getfirebug.com/
答案 2 :(得分:0)
<link rel="stylesheet" href="/style.css" type="text/css" media="screen"/>
如果这不起作用,请告诉我们您的样式表的文件夹结构。