gpt4 book ai didi

html - H3 不显示内联 CSS,而是显示外部 CSS 文件

转载 作者:行者123 更新时间:2023-11-28 07:43:39 25 4
gpt4 key购买 nike

我在一个简单的 html 文件中复制/编写了一个简单的“图像网格”。首先,我使用了一个外部 css 文件。它运作良好。但是由于我无法将工作中的外部 css 文件加载到页面中(只能访问 <body> 之间的 html 代码),我尝试将所有属性复制到内联样式。但随后,h3 消失了。有人可以帮助我吗?

工作的外部 CSS 文件:

<script>

.image-zoom-container {
list-style: none;
font-size: 0px;
}
.zoom-container {
position: relative;
overflow: hidden;
display: inline-block;
width: 33.33%;
font-size: 16px;
font-size: 1rem;
border: 1px solid #fff;
vertical-align: top;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
.zoom-container img {
display: block;
width: 100%;
height: auto;
}
.zoom-container .zoom-caption {
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: 10;
}
.zoom-container .zoom-caption h3 {
display: block;
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
font-size: 1.5em;
font-weight: 900;
letter-spacing: -1px;
text-transform: uppercase;
color: #fff;
margin: 23% 0 0;
padding: 10px 0;
}
</script>

使用这个 HTML:

<html>
<head>
<link rel="stylesheet" href="main.css">
</head>
<div class="image-zoom-container">
<div class="zoom-container">
<span style="zoom-caption">
<h3>Text</h3>
</span>
<img src="test.png" />
</div>
</div>

但是对于内联,它不起作用:

<html>
<head>
</head>
<body>
<div style="list-style: none; font-size: 0px;">
<div style="position: relative; overflow: hidden; display: inline-block; width: 33.33%; border: 1px solid #fff; vertical-align: top; box-sizing: border-box; -moz-box-sizing: border-box;">
<a href="#">
<span style="position: absolute; top: 0; right: 0; bottom: 0; left: 0; z-index: 10;">
<h3 style="display: block; text-align: center; font-size: 1.5em;">Costa Rica</h3>
</span>
<img style="display: block; width: 100%; height: auto;" src="Selection_009.png" />
</a>
</div>
</div>
</body>
</html>

最佳答案

底部 block 中的内联样式与CSS文件中的样式不一样。
例如,曾经是 .zoom-container 的 div 没有指定字体大小。因此,它从其父级(0px)继承了字体大小,使其中的文本小到看不见。是的,h3 确实有 font-size: 1.5em,但是 1.5 × 0px 仍然是 0。

解决方案:从 .css 文件中复制 所有 CSS。

此外,您不应该将 h3 放在 span 中。在发布之前验证您的 HTML!

关于html - H3 不显示内联 CSS,而是显示外部 CSS 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30832404/

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