How to make a transparent HTML button?

后端 未结 6 2083
情歌与酒
情歌与酒 2020-12-23 00:33

I am using dreamweaver to create a website and I thought of just using Photoshop to create backgrounds. I decided to do so only because in case I\'d choose to change the but

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-23 00:50

    **add the icon top button like this **

    #copy_btn{
    	align-items: center;
    	position: absolute;
    	width: 30px;
      height: 30px;
         background-color: Transparent;
        background-repeat:no-repeat;
        border: none;
        cursor:pointer;
        overflow: hidden;
        outline:none;
    }
    .icon_copy{
    	position: absolute;
    	padding: 0px;
    	top:0;
    	left: 0;
    width: 25px;
      height: 35px;
      
    }

提交回复
热议问题