本站消息

站长简介/公众号

  出租广告位,需要合作请联系站长


+关注
已关注

分类  

暂无分类

标签  

暂无标签

日期归档  

暂无数据

将 HTML 按钮转换为链接的最佳方法

发布于2022-09-24 11:07     阅读(1313)     评论(0)     点赞(9)     收藏(2)


我有以下代码,其中有一个带有箭头黑客的按钮。唯一的问题是我想让这个显示状态栏上的链接。一个按钮没有实现。如何将其转换为 aa href 链接并且仍然能够保留该箭头?这是我的代码:

JSFIDDLE

HTML:

<button type="button" class="btn-lg btn-default my-button my-button-active">My Button</button>

CSS:

.my-button {
    color: #fff ;
    background-color: #444346;
    font-size:15px;
    padding: 20px 0px;
    border:none;
    margin-right:20px;
    position: relative;
    outline:0;
    width:31%;
}


.my-button-active:after {
    content:'';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-top: solid 7px #444346;
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;
}

.my-button-active:hover:after {
    content:'';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -10px;
    width: 0;
    height: 0;
    border-top: solid 7px #e6e6e6;
    border-left: solid 7px transparent;
    border-right: solid 7px transparent;
}

解决方案


这很简单。只需将按钮转换为 a 并添加display: block;或添加display: inline-block; 到 .my-button 类。

小提琴链接:http: //jsfiddle.net/samirkumardas/60n0ruyj/2/




所属网站分类: 技术文章 > 问答

作者:黑洞官方问答小能手

链接:http://www.qianduanheidong.com/blog/article/423205/07f222e0bf7512be2d88/

来源:前端黑洞网

任何形式的转载都请注明出处,如有侵权 一经发现 必将追究其法律责任

9 0
收藏该文
已收藏

评论内容:(最多支持255个字符)