Apex 将 id 添加到带有图像的按钮
我正在尝试设计一个按钮,该按钮是 oracle apex 中的图像。我需要做的就是在按钮底部放置一些填充,但我似乎不知道如何做到这一点。我的想法是以某种方式为按钮声明一个唯一的 id 并使用 CSS,但我找不到在哪里为按钮声明唯一的 ID 甚至类 id。我不想使用通用标签来设置它的样式,因为它是一个独特的按钮。知道如何做到这一点吗?
I am trying to style a button that is an image in oracle apex. All I need to do is put some padding at the bottom of the button but I can't seem to figure out how to do this. My thought was to somehow declare a unique id for the button and use CSS but I can't find where to declare a unique ID or even a class id for the button. I do not want to use the generic tag to style it because it is a unique button. Any idea how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先,确保按钮模板包含
#BUTTON_ATTRIBUTES#
替换字符串。例如,然后更改按钮本身并将 Button Attributes 属性设置为类似以下内容:
现在您可以在 CSS 和 Javascript 中引用 MY_BUTTON。
First, ensure that the button template includes the
#BUTTON_ATTRIBUTES#
substitution string. e.g.Then change the button itself and set the Button Attributes property to something like:
Now you can reference MY_BUTTON in CSS and Javascript.