CSS类未应用于我的HTML div标签

时间:2015-07-02 10:57:49

标签: php html css

我正在尝试建立一个网站(显然),我有一个index.php文件,一个homeNav.php和一个style.css。

从index.php,我调用display display_header_bar();这是在homeNav.php文件中。然后我尝试显示“hello world”并且没有CSS正在应用它。在查看检查器时,它说“hello world”在“main”类(我制作的CSS类)中,但只是从基础继承信息 - 也就是说根本不识别CSS文件中的规范。

请帮助???谢谢!

.main {
	font-family: 			'Optima', sans-serif;
	position: 				absolute;
	margin-top: 			20%;
	margin-left: 			10%;
	width: 					90%;
	height: 				80%;
	background-color: 		#000000;
	font-size: 				10em;
}

index.php :
<?php
    include 'homeNav.php';
?>

<!doctype html>
<html>
    <head>
        <title>Explore Hungary: Home</title>
        <link href="css/style.css" rel="stylesheet" type="text/css">
    </head>
    <body>
        <?php display_header_bar(); ?>
        <div classs="main">
            <p>hello world</p>

        </div>
    </body>
</html>

4 个答案:

答案 0 :(得分:1)

我认为你写的“课”错了。

<div classs="main">

应该是:

<div class="main">

答案 1 :(得分:0)

变化

<div classs="main"> 


<div class="main">

答案 2 :(得分:0)

<div classs="main">

删除一个&#34; S&#34;从课堂上可以看作是<div class="main">

答案 3 :(得分:0)

.main {
	font-family: 			'Optima', sans-serif;
	position: 				absolute;
	margin-top: 			20%;
	margin-left: 			10%;
	width: 					90%;
	height: 				80%;
	background-color: 		#000000;
	font-size: 				10em;
}

index.php :
<?php
    include 'homeNav.php';
?>

<!doctype html>
<html>
    <head>
        <title>Explore Hungary: Home</title>
        <link href="css/style.css" rel="stylesheet" type="text/css">
    </head>
    <body>
        <?php display_header_bar(); ?>
        <div class="main">
            <p>hello world</p>

        </div>
    </body>
</html>