gpt4 book ai didi

html - img 标签类不适用于相应的 css 文件

转载 作者:行者123 更新时间:2023-11-28 00:14:34 25 4
gpt4 key购买 nike

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="store.css">
<meta charset="UTF-8">
<title>About</title>
</head>
<body>
<ul class="navBar">
<li><a href="http://csc412sfsu.com/~yzhang25/store_home">Home</a></li>
<li><a href="http://csc412sfsu.com/~yzhang25/store_hours">Hours</a></li>
<li><a href="http://csc412sfsu.com/~yzhang25/store_about">About</a></li>
</ul>
<div class="centered-container">
<h1 class="centered-text sansSerif-text">About the store</h1>
<p>Here is the information about the store</p>
<img class="open-sign-img" src="images/testpic.jpg" alt="open sign">
</div>
</body>
</html>

CSS文件

.orange-text {
color: orange;
}

.blue-text {
color: blue;
}

#red-header {
color: red;
}

.navBar {
list-style-type: none;
margin: 0;
padding: 10px;
background-color: pink;
}

.navBar li {
display: inline;
}

.centered-container {
max-width: 100%;
width: 80%;
height: 90vh;
margin: auto;
background-color: yellow;
}

.centered-text {
text-align: center;
}

.sansSerif-text {
font-family: sans-serif;
}

.centered-container .open-sign-img {
width: 50%;
display: block;
margin: auto;
}

enter image description here

我的其余代码工作正常。在 chrome devTool 中,它显示 CSS 类没有与我的 html 文件中的 img 标签连接。我很困惑,为什么除了这个以外其余的都有效。我在 goole 上搜索了很多,但似乎找不到正确的答案。

最佳答案

为您的站点提供服务的 Web 服务器当前会发送以下 header 以及您的 CSS 文件:

HTTP/1.1 200 OK
Date: Fri, 15 Mar 2019 22:56:07 GMT
Server: Apache/2.4.18 (Ubuntu)
Last-Modified: Fri, 15 Mar 2019 22:19:04 GMT
ETag: "22c-584296d30e600-gzip"
Accept-Ranges: bytes
Vary: Accept-Encoding
Keep-Alive: timeout=5, max=99
Connection: Keep-Alive
Content-Type: text/css
Transfer-Encoding: chunked

由于 Last-Modified header ,浏览器将缓存此文件以避免再次从服务器请求它。我感觉这就是您遇到的问题,因为当我现在访问该网站时,它加载得非常好。

如果您不希望这种情况发生,大多数浏览器的开发人员工具都有一个复选框,可让您在工具打开时禁用缓存。

在 Chrome 中,可以通过使用 F12 打开 DevTools,然后单击“网络”选项卡并选中“禁用缓存”来找到它。或者,您可以使用 CtrlShiftR 进行硬重新加载,这将强制重新请求所有缓存的 Assets ,而无需使用开发工具。

Screenshot of Google Chrome DevTools' Network tab with the Disable cache checkbox circled

关于html - img 标签类不适用于相应的 css 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55191422/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com