搜索文档
首页
HTML/CSS
JavaScript
服务端开发
Java教程
移动端
数据库
当前位置:
首页
HTML/CSS
CSS 教程
CSS 基础教程
源代码
清空
点击运行
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>CSS3转换简写属性示例- div.cn 基础教程</title> <style> button { color: #fff; border: none; padding: 10px 20px; font: bold 18px sans-serif; background: #fd7c2a; -webkit-transition: background 2s ease-in 0s; /* For Safari 3.0+ */ transition: background 2s ease-in 0s; /* Standard syntax */ } button:hover { background: #3cc16e; } </style> </head> <body> <button type="button">悬停在我身上</button> </body> </html>
运行结果