How do I change the image inside an HTML5 form-validation message?

前端 未结 1 1834
小蘑菇
小蘑菇 2020-12-30 14:44

Using this article, I\'m changing the styling of some of my HTML5 form-validation pop-ups. However, my error pop-ups still have the default, orange exclamation point in the

相关标签:
1条回答
  • 2020-12-30 15:10

    Try:

    input::-webkit-validation-bubble-icon {
    display: none;
    }
    

    or, of course:

    input::-webkit-validation-bubble-icon {
    background: url(http://google.com/favicon.ico);
    }
    

    Jsfiddle here: http://jsfiddle.net/xhqhV/

    0 讨论(0)
提交回复
热议问题