Dreamweaver 按键变色代码:按下变绿,松开变白
<html>
<head>
<style>
button {
background-color: white;
}
button:active {
background-color: green;
}
</style>
</head>
<body>
<button>按下我</button>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/nKT4 著作权归作者所有。请勿转载和采集!