提问人:Matt Saiko 提问时间:11/17/2023 最后编辑:HenrikMatt Saiko 更新时间:11/18/2023 访问量:49
css 不起作用,除非我检查样式表并进行更改
css not working unless I inspect the style sheet and make a change
问:
我有一个带有CSS样式表的网页。
页面上的样式表在加载时不起作用,但是如果我检查元素并在开发工具中对 css 进行更改,它就会正确显示。 我可以更改它,然后将其更改回来 - 它有效,我可以将值调整 1,我可以在某处添加空格,甚至只是在底部添加一个新行。
完成故障排除后,我认为它不可能是样式表,因为我什么也没做,只是检查并按回车键就可以了。我已经删除并重新创建了页面,移动了它,复制了它,等等,唯一能显示它的是对样式表的任何小编辑。
在 Chrome 和 Firefox 中也是如此。链接的反应也相同,因此它似乎不仅仅是索引.html。
.column {
float: left;
width: 25%;
padding: 10px;
}
.row:after {
content: "";
display: table;
clear: both;
}
.center {
margin: auto;
width: 90%;
padding: 5px;
}
.center2 {
margin: auto;
width: 80%;
padding: 10px;
text-align: center;
}
.center_img {
display: block;
margin-left: auto;
margin-right: auto;
width: 30%;
}
.base{
position: fixed;
margin-left: 15%;
height: auto;
widht: auto;
}
.div_log {
margin-left: 15%;
}
aside {
color: #fff;
width: 14%;
min-width: 150px;
padding-left: 20px;
height: 100%;
background-image: linear-gradient(30deg , #0048bd, #44a7fd);
border-top-right-radius: 80px;
position: fixed;
left: 0;
float: left;
}
aside a {
font-size: 19px;
color: #fff;
display: block;
padding: 12px;
padding-left: 30px;
text-decoration: none;
-webkit-tap-highlight-color:transparent;
}
aside a:hover {
color: #3f5efb;
background: #fff;
outline: none;
position: relative;
background-color: #fff;
border-top-left-radius: 20px;
border-bottom-left-radius: 20px;
}
aside a i {
margin-right: 5px;
}
aside a:hover::after {
content: "";
position: absolute;
background-color: transparent;
bottom: 100%;
right: 0;
height: 35px;
width: 35px;
border-bottom-right-radius: 18px;
box-shadow: 0 20px 0 0 #fff;
}
aside a:hover::before {
content: "";
position: absolute;
background-color: transparent;
top: 38px;
right: 0;
height: 35px;
width: 35px;
border-top-right-radius: 18px;
box-shadow: 0 -20px 0 0 #fff;
}
aside p {
margin: 0;
padding: 40px 0;
}
body {
font-family: 'Roboto';
width: 100%;
height: 100%;
margin: 0;
}
bgimage {
background-image: url("/images/int.jpg");
background-repeat: no-repeat;
background-size: auto;
}
.social {
height: 0;
}
.social i:before {
width: 14px;
height: 14px;
font-size: 14px;
position: fixed;
color: #fff;
background: #0077B5;
padding: 10px;
border-radius: 50%;
top:5px;
right:5px;
}
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD" crossorigin="anonymous">
<link rel="stylesheet" href="css/style_sheet.css" />
<link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet">
</head>
<body>
<aside>
<p> Menu </p>
<a href="index.html">
<i class="fa fa-home" aria-hidden="true"></i>
Home
</a>
<a href="config.php">
<i class="fa fa-gear" aria-hidden="true"></i>
Configure Interface
</a>
<a href="sendpage.php">
<i class="fa fa-envelope-o" aria-hidden="true"></i>
Send Message
</a>
<a href="input.php">
<i class="fa fa-file-text-o" aria-hidden="true"></i>
View Log
</a>
</aside>
<div class="base">
<img src="images/MSMWelcome.jpg">
</img>
<div>
<img src="images/int.png" class="img">
</div>
</div>
</body>
</html>
答:
0赞
Matt Saiko
11/18/2023
#1
我已经在一个页面上找到了答案,但我必须清除我的缓存和历史记录,这样我就无法找到该页面来链接它 添加行
include /etc/nginx/mime.types;
sendfile on;
在我的 nginx.conf 中,在我的行下http {
评论
0赞
Tim R
11/18/2023
那么问题出在您的服务器配置上,关于 MIME 类型?
评论
widht
</img>