CSS美化button按钮样式
100人浏览 2024-08-22 08:04:24
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <style> /*button样式*/ .global-button { width: 75px; height: 30px; background: #3094D0; cursor: pointer; border: 1px solid transparent; border-radius: 3px; color: white; } button:nth-child(2) { background: red; } </style> </head> <body> <button type="button" class="global-button" >登录</button> <button type="button" class="global-button" >取消</button> </body> </html>

效果图
附带一张登录效果图:如下

登录效果图
相关推荐
-
小白搭建PHP网站,入门基础PHP面板安装使用2025-04-28 01:26:20
-
mac php 启用intl 苦难记2025-04-28 01:22:11
-
PHP实现异步调用的方式2025-04-28 01:11:52
-
Nginx安全相关配置常用教程2025-04-28 00:42:40
-
php http PHP的HTTP验证2025-04-28 00:21:22