我无法使用我的.php文件加载我的css文件。所以我创建了一个相同的文件,并保存为.html,html文件工作正常(当然除了PHP代码)但.php只显示没有任何格式。谁能帮我这个?哦,css文件可以和其他.php页面一起使用
在我这样做之前,我使用的是.master类,它正在工作,但是当我试图通过它扩展标题时,它甚至停止工作。提前感谢你们给予的任何帮助。注意:.HTML文件位于代码的CSS部分,抱歉。
CSS文件,
.tajc {
color: #926D6D;
background-color:#2E43C6;
width: 100%;
height: 55px;
overflow: hidden;
display: inline-block
}
.tajc button {
background-color:#696969;
font-family: helvetica;
font-size: 16px;
text-align: center;
padding: 15px 32px;
border: none;
text-transform:uppercase;
}
.master {
color: #000;
background-color: #14B990;
/*font-family: helvetica;
font-size: 19px;
text-align: center;
/*padding: 0vh;
text-transform:uppercase;*/
width: 100%;
height: 55px;
overflow: hidden;
float: left
}
.master h1 {
font-size: 26px;
color: #000;
font-family: helvetica;
text-align: center;
text-decoration: none;
text-transform:uppercase;
}
.master button {
background-color:#696969;
font-family: helvetica;
font-size: 16px;
text-align: center;
padding: 15px 32px;
border: none;
text-transform:uppercase;
}
.master a {
font-size: 13px;
color: #000;
font-family: helvetica;
text-align: center;
text-decoration: none;
}
HTML file;
<?php
session_start();
include 'dbh.php';
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div id="tajc">
<form>
<button>test button</button>
<?php
echo $_SESSION['first'];
?>
</form>
</div>
</body>
</html>
.PHP文件;
<?php
session_start();
include 'dbh.php';
?>
<!DOCTYPE html>
<html>
<head>
<title></title>
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
</head>
<body>
<div class="tajc">
<form>
<button>test button</button>
<?php
echo $_SESSION['first'];
?>
</form>
</div>
</body>
</html>