gpt4 book ai didi

html - 我的浏览器不会根据我的 CSS 样式表更改网站

转载 作者:行者123 更新时间:2023-11-28 04:40:19 25 4
gpt4 key购买 nike

我真的不知道该怎么办。当我更改 CSS 时,我的浏览器没有改变

情况是这样的:我在 CSS 和 html 中有一个名为 wraper 的类,这个类是一个 div 包装 2 个子 div我对这个类应用了display : none,所以这个类应该是不可见的,但实际上div是可见的

所以我检查了元素,我发现 div 在浏览器控制台中没有类,只有用户代理样式表

截图如下:

CSS

browser console

div class='wraper' 只有用户代理样式表,即使我将高度和宽度设置为 900px 和 300px,当我检查 div 时有 1343px x 0px

HTML 的结构是这样的:

<div class='wraper'>
<div class='gambar-testi'></div>
<div class='preview-testi'><h2> Testimoni</h2>
<span>Lorem ipsum dolor sit amet, consectetur
adipiscing elit. Pellentesque erat ex, dapibus sit
amet lobortis eget, consequat vel nisi. Aliquam ac
enim eget libero pretium venenatis id sed nibh.</span></div>

和 CSS:

.wraper {
width : 900px;
height : 300px;
display : none;
}
.gambar-testi {
display : inline-block;
margin : 10px;
background-color : red;
width : 47%;
height : 340px;
}

.preview-testi {
width : 47%;
display : inline-block;
margin : 0 30px;
}
.preview-testi span {
font-size : 30px;
}

另一个问题,我刚才将 .gambar-testi 属性从 float : left 更改为 display : inline-block我在浏览器控制台中检查该元素,它显示该属性仍为 float : left 尚未更改为 display : inline-block

enter image description here

.wraper {
width : 900px;
height : 300px;
display : none
}
.gambar-testi {
display : inline-block;
margin : 10px;
background-color : red;
width : 47%;
height : 340px;
}

.preview-testi {
width : 47%;
display : inline-block;
margin : 0 30px;
}
.preview-testi span {
font-size : 30px;
color : black;
}
<html>
<head></head>
<body>
<div class="wraper">
<div class="gambar-testi"></div>
<div class="preview-testi"><h2> Testimoni</h2>
<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Pellentesque erat ex, dapibus sit amet lobortis eget, consequat vel nisi. Aliquam ac enim eget libero pretium venenatis id sed nibh.</span>
</div>
</div>
</body>
</html>

我也试过 Jsfiddle 来重现问题,但结果没有显示在这里是链接:https://jsfiddle.net/xqxkzhfL/

也尝试在 SO 代码片段中创建它,但结果并没有显示太多请帮助我已经不知道该怎么办了......这是我目前所知道的一切

编辑抱歉,我是愚蠢的,在 jsfiddle 和 SO 代码片段中,我将 display : none 应用于 .wraper 所以当然不会显示结果,因为显示没有...是的,它在 jsfiddle 和 SO 代码片段中有效,但在我的本地主机中它不起作用......为什么?

最佳答案

请确保您的浏览器不会缓存您的旧网页在chrome中,保持“开发者控制台(F12)出现,然后设置->网络->禁用缓存(当DevTools打开时)enter image description here

关于html - 我的浏览器不会根据我的 CSS 样式表更改网站,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41234250/

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