Remove border from buttons

后端 未结 10 1393
囚心锁ツ
囚心锁ツ 2020-12-02 14:42

I tried to create buttons and insert my own images instead of the standard button images. However, the gray border from the standard buttons still remains, showing on the ou

相关标签:
10条回答
  • 2020-12-02 15:42

    This seems to work for me perfectly.

    button:focus { outline: none; }
    
    0 讨论(0)
  • 2020-12-02 15:44

    Add this as css,

    button[type=submit]{border:none;}
    
    0 讨论(0)
  • 2020-12-02 15:45

    $(".myButtonClass").css(["border:none; background-color:white; padding:0"]);

    0 讨论(0)
  • 2020-12-02 15:47
    input[type="button"] {
    border: none;
    outline:none;
    }
    
    0 讨论(0)
提交回复
热议问题