Javascript 我在页面上包含footer.php文件,但引导程序正在更改我的页脚,使我可以在没有冲突的情况下包含我的页脚bootstrap.css

Javascript 我在页面上包含footer.php文件,但引导程序正在更改我的页脚,使我可以在没有冲突的情况下包含我的页脚bootstrap.css,javascript,php,html,css,Javascript,Php,Html,Css,在页脚文件中,页眉应答器上有样式。如何在不更改任何内容的情况下修复包含的页脚 在此处输入代码 <head> <?php include( '../../footer.php');?> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initia

在页脚文件中,页眉应答器上有样式。如何在不更改任何内容的情况下修复包含的页脚

在此处输入代码

     <head>
         <?php include( '../../footer.php');?>
         <meta charset="UTF-8">
         <meta name="viewport" content="width=device-width, initial-scale=1.0">
         <meta http-equiv="X-UA-Compatible" content="ie=edge">
         <link rel="stylesheet" href="css/bootstrap.css">
         <script src=" js/jquery.js"></script>
         <script src="js/bootstrap.js"> </script>
         <script src="js/myjs.js"></script>
         <link rel="stylesheet" type="text/css" href="css/bootstrap.css">
         <link rel="stylesheet" href="css/style.css?1234">
         <style>
         body {
             background: #F4F6F9;
         }
         </style>
         <title>Admin</title>
     </head>

身体{
背景#F4F6F9;
}
管理

您的意思是要使用没有引导样式的页脚?引导与类一起工作,对吗?您是否在页脚上使用任何引导类?如果您能显示页脚的实际HTML,这可能会有所帮助。@azboch您能显示
footer.php
的内容吗?我不能让它们有更多的6k字符,但它的工作正常,因为我将它们包含在其他文件中,并且文件上的良好jst有引导changed@EmielZuurbier是的,你是对的,我想使用页脚而不使用bootstrapon the footer.php类似于它的表单,head my style footer my footer content。我在同一个文件中使用它们而不链接其样式