gpt4 book ai didi

html - 网页中的标题框

转载 作者:太空宇宙 更新时间:2023-11-04 07:50:24 25 4
gpt4 key购买 nike

我知道如何使用 CSS 使图像固定位置,但我不知道如何使用 HTML 实际创建标题。

我附上了一张图片,我希望仍然可以在标题中编辑内容,How it should look.

任何帮助将不胜感激,因为我永远无法做到这一点。

如果它是一张图片,我会这样做:

<style>
.header
{
position: fixed;
top: 0%;
left: 0%;
right: 0%
z-index: 1;
}
</style>

<img src="IMAGE URL" class="header" width="100%" height="150px">

然后图像将被固定,我如何制作它以便在所有内容的顶部都有一个纯色框。

谢谢。

最佳答案

<style>
.header
{
background-color: red;
position: fixed;
top: 0%;
left: 0%;
right: 0%;
height: 150px;
z-index: 1;
}
</style>

<div class="header">
Some Text
</div>

关于html - 网页中的标题框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47818038/

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