gpt4 book ai didi

html - 我怎样才能让这个 anchor 链接看起来像一个按钮

转载 作者:太空宇宙 更新时间:2023-11-04 10:30:06 28 4
gpt4 key购买 nike

我怎样才能让它看起来像一个按钮?我已经尝试过 webkit,但它似乎没有用,我一定是做错了什么。我附上了一张图片,说明它的外观以及我为使它看起来像而绑的东西。使用 HTML5 CSS3 和 Bootstrap 。感谢您的帮助!

This is an image of what it looks like; and below it what I want it to look like

<div class="btn-one">
<a href="#h3" class="button">Scroll Down to Learn More</a>
</div>

我在页面下方放置了 anchor

它工作正常,但看起来不正常。

CSS

a.button {
text-decoration: none;
color: #00bfff;
font-size: 18px;
text-transform: uppercase;
letter-spacing: .5px;
display: inline-block;
padding: 10px 30px;
margin: 20px;
font-weight: 400;
border-color: #00bfff;
border-width: 1px;
-webkit-border-radius: 50%;
-webkit-border-color:#00bfff;
-moz-border-radius: 50%;
-ms-border-radius: 50%;
-o-border-radius: 50%;
}

.btn-one {
padding: 2%;
font-weight: 400;
}

最佳答案

看起来问题是缺少为您的元素定义边框样式。如果您使用定义边界的速记版本(为简单起见),您会看到它出现。我在下面对一些 CSS 进行了采样并更改了边框半径,因为在 50% 时它看起来像一个椭圆形而不是您想要的效果。

a.button {
text-decoration: none;
color: #00bfff;
font-size: 18px;
text-transform: uppercase;
letter-spacing: .5px;
display: inline-block;
padding: 10px 30px;
margin: 20px;
font-weight: 400;
border: 1px solid #00bfff;
-webkit-border-radius: 40px;
-moz-border-radius: 40px;
-ms-border-radius: 40px;
-o-border-radius: 40px;
}

.btn-one {
padding: 2%;
font-weight: 400;
}

关于html - 我怎样才能让这个 anchor 链接看起来像一个按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36553078/

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