Currently, I am exploring different methods to scale HTML elements for a large screen, such as a kiosk. I have been using CSS3 scale() to achieve a relatively cross-browser scale, but I am curious if there are better options available.
My main focus is on resizing widgets (including HTML, JavaScript, and images) to a larger scale, for example, from 400x200px to 800x500px. Instead of manually reworking each widget for a larger scale, I am seeking alternative solutions.
Would SVG or canvas offer better options? While CSS3 scale() works, it requires replacing images with high-resolution versions and may cause text spacing issues.
Any suggestions are greatly appreciated! Thank you!