在appsmith中单独的设置按钮的颜色和字体的颜色按钮名为forget_button设置背景颜色为白色按钮的文本为forgget将文本设置为蓝色该按钮没有设置文本颜色选项
要单独设置按钮文本颜色,可以在页面的CSS样式中添加以下代码:
#forget_button {
background-color: white;
color: blue;
}
这将使按钮背景颜色为白色,文本颜色为蓝色。请确保将“forget_button”替换为您实际使用的按钮ID。
原文地址: https://www.cveoy.top/t/topic/fpjh 著作权归作者所有。请勿转载和采集!