Reverting CSS style of <input type=submit button to its default style

后端 未结 10 1090
忘掉有多难
忘掉有多难 2020-12-05 14:40

I\'m using a bookmarklet that inserts a script tag into the current web page.

This script has some UI and an \"input type=submit....\" tag in it.

<
10条回答
  •  生来不讨喜
    2020-12-05 15:19

    Thanks, used with good results

    INPUT, SELECT
    {
        color: #003333;
        font-size: 90%;
        border-bottom: #d3d3d3 1px solid;
        border-left: #d3d3d3 1px solid;
        border-top: #d3d3d3 1px solid;
        border-right: #d3d3d3 1px solid;
    }
    
    INPUT[type="submit"]
    {
        background-color: #336699;
        color: #f0e68c;
    }
    

提交回复
热议问题