gpt4 book ai didi

html - 如何使
标签表现得像 标签?

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

最佳答案

反过来更容易。制作<a>标签表现为 <div> .只需使用 <a style="display: block;"> .

如果你做不到,你也可以使用javascript:

<div onclick="location.href = 'www.yoursite.com';">

编辑:

<html>
<head>
<link rel="stylesheet" type="text/css" href="css.css" >
</head>
<body>
<a href="http://google.com">link</a>
<br><br>
<a class="button" href="http://google.com">button 1</a>
<br>
<a class="button" href="http://yourpage.com">button 2</a>
</body>
</html>

这是 CSS 文件:

a, a:hover, a:visited, a:active {
color: inherit;
text-decoration: none;
}

.button {
width: 100px;
display: block;
background-color: #cccccc;
cursor: pointer;
text-align: center;
border: 1px solid #666666;
padding: 3px;
}

https://jsfiddle.net/xdps000s/

关于html - 如何使 <div> 标签表现得像 <a> 标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37204568/

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