Php 标题css/引导问题,奇怪

Php 标题css/引导问题,奇怪,php,html,css,header,Php,Html,Css,Header,我不明白这里发生了什么 这是我的文件数据“结构”: 这里是我的文件夹“css”的内容 因此,在我的程序中:这个文件“estudiante.php”、“editar.php”和“hola.php”具有相同的头。看一看: <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <script src="http://code.jqu

我不明白这里发生了什么

这是我的文件数据“结构”:

这里是我的文件夹“css”的内容

因此,在我的程序中:这个文件“estudiante.php”、“editar.php”和“hola.php”具有相同的头。看一看:

    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <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>


</head>

问题是,我无法从“css”文件夹链接文件“estilos.css”,因为我在使用chrome检查inspect element工具时遇到了一些错误:

但这很奇怪,因为我在标题上写了这样一行:

<meta name="viewport" content="width=device-width, initial-scale=1">

这一行使我的页面具有响应性,但这些命令都在我的estilos.css文件中。。我不明白,看一看:

    <head>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <script src="http://code.jquery.com/jquery-2.1.1.min.js"></script>
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <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>


</head>


因此,estilos.css不会出现在我的代码中,但标题使用了内容并使我的网站具有响应性?。我不明白,伙计们:(

仔细检查您的文件命名约定。看起来您正在隐藏文件扩展名,因为
引导
引导.min
等最后没有
.css
,但是
estilos.css
有。您的文件可能实际命名为
estilos.css
,并且您不知道


我在你的HTML中看不到
estilos.css
。你正在使用的路径是什么?可能你的开头有一个斜杠,这会使浏览器在本地主机上从你的项目文件夹中查找一个文件夹。我猜这是你正在使用的
href=“/css/estilos.css”
,而不是
href>=“css/estilos.css”
(开头没有
/
)。FWIW,删除重复的
标记。观察得好!我自己错过了。