Click here to Skip to main content
15,867,568 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
how do i set a web page size resolution in html


What I have tried:

html and css
Posted
Updated 7-Jan-23 10:52am

You don't. There is no such thing.

The page cannot control the size of the browser window nor the "resolution", whatever you mean by that.
 
Share this answer
 
Believe you are talking of device support. HTML5/CSS3 have defined ways to support multiple devices. You can use Viewport Meta Tag OR CSS Media Queries
Quote:
Viewport Meta Tag - it controls browsers page display, by telling the browser how content should fit on the device's screen. Further, it informs the browser that the site is optimized for mobile devices.

CSS Media Queries - these are media based stylesheets, that enables the content's presentation to be customized to a specific range of output devices without having to change the content itself.
For more details, refer: HTML5 Quick Start Web Application[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900