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