How to style default confirm box with only css?

It is not possible. This window is displayed by the browser using the platform’s UI kit. It’s not in the DOM, not visible from the CSS or Javascript, there’s nothing you can do.

However, some very simple jQuery code can do the trick. How about $('a').confirm(); ?

Leave a Comment