Remove 3D push effect on a button

前端 未结 8 1568
忘掉有多难
忘掉有多难 2020-12-06 16:27

I\'m trying to remove all effects on a HTML Button element. The HTML:

8条回答
  •  借酒劲吻你
    2020-12-06 16:56

    you need to add background styles to :hover :active :focus as well.

    #header #go button:hover {
    border: none;
    outline:none;
    padding: 5px;
    background:url('../images/cards/go.png');
    }
    
    #header #go button:active {
    border: none;
    outline:none;
    padding: 5px;
    background:url('../images/cards/go.png');
    }
    
    #header #go button:focus {
    border: none;
    outline:none;
    padding: 5px;
    background:url('../images/cards/go.png');
    }
    

提交回复
热议问题