Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I scale a web page width (in pixels) to any screen size?

Tags:

html

css

size

I am attempting to create website with a fixed width (970 px) and would like to ensure that it is adjusted to any potential user screen size, but the browser continues to display it in addition to margins created by my overall screen width.

like image 825
Really Curious Avatar asked Sep 16 '25 16:09

Really Curious


1 Answers

If you are trying to make your page span 100% of the width then review this article: Liquid Layout

If you are trying to center your fixed width content on any page width simply use:

margin: 0px auto;
like image 90
BentOnCoding Avatar answered Sep 18 '25 05:09

BentOnCoding