真的需要帮助。我在NetBeans的项目中创建了一个CSS文件:
body {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
background-color: #eaeaea;
}
.main {
background-color: #FFF;
width: 1000px;
margin:0 auto;
}
.logo{
display: block;
margin: auto;
}
.search_image{
width: 150px;
height: 60px;
}
.sidebar1{
float: left;
width: 30%;
padding-bottom: 10px;
background-color: #FFFFFF;
}
.book_list{
background-color: #FFFFFF;
}
它与JSP文件链接。前四个课程确实有效,但最后两个课程没有(search_image和sidebar1)。当我尝试在Chrome中检查Inspect元素中的CSS文件时,我会看到下一个:
body {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
font-style: normal;
font-weight: normal;
background-color: #eaeaea;
}
.main {
background-color: #FFF;
width: 1000px;
margin:0 auto;
padding:20px;
}
.logo{
display: block;
margin: auto;
width: 30%;
}
.search_image{
width: 150px;
height: 60px;
}
部分在服务器上部署CSS文件的原因是什么?
答案 0 :(得分:0)
听起来它将旧CSS保留在缓存中。我建议您在检查器打开时关闭缓存。您可以在检查员的设置中找到它。