gpt4 book ai didi

html - 有效的 html 标题

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

有什么方法可以编写有效的标题/链接/图像吗?有点像

<a href="index.html"><h1 id="logo">Company name</h1></a> 

(将图像设置为背景,文本向左移动,因此通过 css 不可见)

最佳答案

类似于:

<h1 id="logo"><a href="index.html">Company Name</a></h1>

#logo a {
display: block;
width: 200px; /* width and height equal to image size */
height: 100px;
background: transparent url(images/logo.png) no-repeat;
text-indent:-9999px;
}

原始标记的问题是 <a>是一个行内元素并且 <h1>是 block 元素。内联元素不能包含 block 元素。

关于html - 有效的 html 标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/839630/

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