Home
CSS
CSS !important
Tryit: Example
Run ❯
Get your
own
website
Result Size:
625 x 534
×
Change Orientation
Save Code
Change Theme, Dark/Light
Go to Spaces
<!DOCTYPE html> <html> <head> <style> .button { background-color: #8c8c8c; color: white; padding: 5px; border: 1px solid black; } </style> </head> <body> <p>Standard button: <a class="button" href="default.asp">CSS Tutorial</a></p> <p>Standard button: <a class="button" href="/html/">HTML Tutorial</a></p> </body> </html>