我有这个index.php文件
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<style type="text/css">
</style>
</head>
<body>
<div id="container">
<?php include('includes/header.php');?>
<?php include('includes/sidebar.php');?>
<?php include('includes/content.php');?>
<?php include('includes/footer.php');?>
</body>
</html>
这些包括文件。
的header.php
<div id="header">
<img src="banner.jpg">
</div>
的sidebar.php
<div id="sidebar">
<a href="index.php" class="sidebar">Home</a><br />
<a href="study.php" class="sidebar">Study</a><br />
<a href="calendar.php" class="sidebar">Calendar</a><br />
<a href="diary.php" class="sidebar">Diary</a>
</div>
footer.php
<div id="footer">
<p>haha</p>
</div>
我有这个css文件。
#container{
margin:0px 0px 0px 0px;
width:1024px;
border:3px;
}
#header{
margin-left:50px;
border:3px;
}
#sidebar{
margin-left:30px;
float:left;
width:300px;
height:900px;
border:3px;
}
#sidebar a:link{
color : #ff6c00;
text-decoration : none;
}
#sidebar a:visited{
color : #ff6c00;
text-decoration : none;
}
#sidebar a:hover{
color : #00991d;
text-decoration : underline;
}
#content{
margin-left:30px;
float:left;
width:724px;
height:900px;
border:3px;
}
#footer{
border:3px;
text-align:center;
clear:both;
width:1024px;
}
侧边栏上的链接设置正常。但是,我更改了一些边距和边框,以便我可以检查它是否正常工作,并且它不起作用。我刷新了网站,没有任何新的显示。
你能帮我弄清楚为什么会这样吗?
答案 0 :(得分:1)
首先,您应该尝试使用某种开发工具进行css更改,而不是刷新(对于明显的缓存问题,并且因为您在提交之前尝试了设置)。
此类工具的示例包括Chrome的chrome development tools或Mozilla的Firebug。
同时,您可以尝试使用ctrl + R或其他一些“刷新硬盘”来刷新。方法(取决于浏览器)。
最后,但并非最不重要的是,您还应该检查是否确实设法将已过滤的文件上传到服务器,并且在此过程中没有发生错误。有时,与服务器的ftp连接中断,程序无法上传文件。