Is it possbile to get the default Chrome button style in CSS?
Of course many would say use http://pastebin.com/zjkW2cJe or http://pastebin.com/xKGBZFPg
But i want this button CSS code…
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you want the pure CSS rules, you can inspect the button element and check out the entries saying “user agent stylesheet”.
In my Chrome 9, they look like this:
however, if you literally want the rules for natively rendering a button, in order to render the same button in other browsers, I think that’s impossible: A default button will be rendered by the Browser’s UI or even the underlying operating system. In my Windows 7, the default button looks like this:
This style, as far as I know, is not in the CSS rules. You would have to rebuild it using background images, borders, rounded corners etc. If you don’t mind using jQuery, libraries like jQuery UI have seducingly simple solutions for this.