请编写一个 当鼠标指向时 橙色背景白色文字圆角矩形的按钮 css 样式 颜色使用rgba表示
.button { background-color: rgba(255, 165, 0, 1); color: rgba(255, 255, 255, 1); border-radius: 10px; padding: 10px 20px; cursor: pointer; }
.button:hover { background-color: rgba(255, 165, 0, 0.8); }
原文地址: https://www.cveoy.top/t/topic/izBH 著作权归作者所有。请勿转载和采集!