I have a unique designer button with a 3D-like effect that cannot be created using just background and border radius. The "radius" of the button also needs to be an image.
While tutorials like this one show how to make similar buttons, I find that jquery-ui only offers classes like:
.ui-state-default
which sets the background image for the button and other elements.ui-button
that defines properties specific to buttons
The code includes only one <input
, so incorporating two images seems impossible. Is there a way to use both images with $("..").button()
? Maybe adding spans inside <button>
could work, but that would be cumbersome to do everywhere.