Reputation: 1547
I am busy building a website and I thought what should I use as height/width?
And then I got a bit confused I heard everyone saying 1024 * 768 .. but which one whas the width and what whas te height..
So is it : Height 1024 * width 768 Or width 1024 * height 768 ?
Or is there a new better size to build youre website on?
If there is an duplicate I missed please post it and I will look there.
P.S Thanks everyone for the help I have got in al my questions before this.
Upvotes: 0
Views: 58
Reputation: 427
1024 width and 768 height. Its standard resolution on PC, notebooks. Its recomended to create sites that fits on its resolution.
Upvotes: 0
Reputation: 3497
First one is the width.
The "new better size" is to make the site scale for all sizes above some absurd minimum. This will also make it accessible and zoomable.
Upvotes: 1
Reputation: 103358
They would mean:
Width = 1024px
Height = 768px
Generally x * y
means width * height
Upvotes: 3