首页
CSS
CSS !important
试用:示例
运行 ❯
获取您的
自有
网站
×
更改方向
保存代码
更改主题,深色/浅色
前往 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>