我的网站有问题。除FireFox外,它在所有主流浏览器中都能正常工作。图像未显示,菜单不起作用且未显示整体布局。我知道我没有在img标签中放置任何alt属性,但我认为这不是问题,因为它适用于所有其他浏览器。
你们有想法如何解决这个问题吗?
链接为http://portfolio.io.utwente.nl/student/roosmalenjjvan/
谢谢!
答案 0 :(得分:3)
那是因为你使用了
<link href="css\style.css" rel="stylesheet" type="text/css">
<!-- ^^^ see incorrect slash here -->
注意\
,但应该/
喜欢
<link href="css/style.css" rel="stylesheet" type="text/css">
<!-- ^^^ this is correct slash here -->
答案 1 :(得分:0)
您的css路径不正确链接http://portfolio.io.utwente.nl/student/roosmalenjjvan/css \ style.css
在这里使用<link href="css\style.css" rel="stylesheet" type="text/css">
试试这种<link href="css/style.css" rel="stylesheet" type="text/css">
尝试使用http://portfolio.io.utwente.nl/student/roosmalenjjvan/css/style.css
答案 2 :(得分:0)
请更正您的css路径... 目前它是
<link href="css\style.css" rel="stylesheet" type="text/css">
请转到
<link href="css/style.css" rel="stylesheet" type="text/css">
答案 3 :(得分:0)
您在代码中使用反斜杠(\)而不是forwardslash(/)代码(请查看下面的示例),只需替换反斜杠,
<link href="css\style.css" rel="stylesheet" type="text/css">
<link rel="icon" href="img\favicon.jpg" type="image/x-icon">
<img src="img\jopvanroosmalen.png">
将其替换为
<link href="css/style.css" rel="stylesheet" type="text/css">
<link rel="icon" href="img/favicon.jpg" type="image/x-icon">
<img src="img/jopvanroosmalen.png"> and so on