首先,这是我的文件数据“结构”:
在css文件夹里面有一个文件estilos.css,但是有些错误。我的程序工作正常,但如果我使用检查elemnt我有一些错误。看看:
这是我的代码:
<head>
<link rel="stylesheet" href="../css/estilos.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js" integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa" crossorigin="anonymous"></script>
希望你能帮助我!
答案 0 :(得分:0)
错误是因为您有一个名称为 estilos 的css文件,而不是 estilos.css 。 正如您在https://i.gyazo.com/a2eadcbadd51094154e9471924a386c6.png
的图片中指出的那样将文件重命名为estilos.css,您将不再收到错误。
也可以从
更改您的代码<link rel="stylesheet" href="../css/estilos.css">
要
<link rel="stylesheet" href="css/estilos.css">
不需要../