带边框的CSS透明按钮

时间:2014-08-25 11:27:33

标签: html css

我正在尝试像这样在css中创建一个按钮

但我不知道怎么做,因为我是css的新手。这就是我试过的:

.gbtnHollow  {
     background:  transparent;
     height:  38px;
     line-height:  40px;
     border:  2px solid white;
     display:  inline-block;
     float:  none;
     text-align:  center;
     width:  120px;
     padding:  0px!important;
     font-size:  14px;
     color:  #fff;
 }

.gbtnHollow:hover  {
     color:  #fff;
     background:  rgba(255, 255, 255, 0.2);
 }

4 个答案:

答案 0 :(得分:4)

非常简单,将background: none;设置为按钮。 JSFiddle

答案 1 :(得分:1)

button {
    background-color: Transparent;
    background-repeat:no-repeat;
    cursor:pointer;
    overflow: hidden;
    outline:none;
}

添加此项并为您自定义。示例在Fiddle

答案 2 :(得分:1)

简单。将此css添加到按钮:

button {
    background: none;/*this for transparent button*/
    border: 1px solid black;/* this is for button border*/
    position: relative;
    left: 150px;
    top: 80px;
}

答案 3 :(得分:1)

enter image description here enter image description here

#button {
     width: 150px;
     height: 50px;
     border:none;
     border:solid 2px black;
     border-radius: 5px;
     background: rgba(255, 255, 255,0);
     font-size: 25px;
}

#button:hover {
     background:black;
     color:white; 
}