作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是初学者。我希望我的按钮是由一个带有图标的圆圈创建的,它是我的 Twitter 帐户的超链接,我尝试了很多方法来做到这一点,但都没有奏效。预先感谢您的回答。任何帮助将不胜感激。
HTML:
<button type="button" id="twitter-icon">
<img src="img/twitter-icon.svg">
</button>
CSS:
#twitter-icon {
border: none;
color: none;
text-decoration: none;
cursor: pointer;
display: inline-block;
backface-visibility: hidden;
background-color: none;
width: 0px;
height: 0px;
display: inline-block;
margin-right: 70px;
margin-top: 150px;
}
最佳答案
用 anchor 标签包裹你的按钮就可以了
<a id="twitter-link" href="your_twitter_link">
<button type="button" id="twitter-icon">
<img src="https://www.choiceofgames.com/icons/appstore.svg">
</button>
</a>
关于html - 按钮超链接问题 HTML/CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64229787/
我是一名优秀的程序员,十分优秀!