© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Zoe K
Hi Louis. I have a question about card region. When I make card region to be paginated, the next button is at the bottom of the card region. Is there a way put the next button at top of the card region?
Louis Moreaux
Oracle APEX developer
Hi Zo, It can be done by applying this CSS rule:
#{region-static_id}_Cards { display: flex; flex-direction: column-reverse; }
But keep in mind that this could break if the Oracle APEX team change the way they generate the HTML markup
Louis Moreaux Thank you Louis! This works well. Your tutorials are very helpful!