Can the wicket:id attribute of an element or component be used for CSS styling instead of the "class" attribute?
For example:
.tooltipster-arrow span, .column-shifter {
display: block;
width: 0;
height: 0;
position: absolute;
}
Let's say I have the following in my HTML code:
<body>
<wicket:panel>
<div wicket:id="column-shifter"></div>
</wicket:panel>
</body>
Thank you!