Page 1 of 1

Making div tags fit every browser and screen

Posted: Thu Dec 09, 2010 9:53 pm
by Baseball435
hey everyone. Well i have been trying to make a basic web layout and i use the code for my top bar div tag as

Code: Select all

#topbar {
	text-indent:25px;
	text-align:right;
	background:#000;
	border: 1px solid #000;
	width:1010px;
	height: 30px;
but when i go onto my other computer the width is too far because of the screen being smaller. How could i make it so that it fits every screen and the text stays where i want it? (top right)

Thanks in advance!

~baseball435

Re: Making div tags fit every browser and screen

Posted: Fri Dec 10, 2010 8:49 am
by Chris
You could either not give it any width, set the width to auto or 100%.

Or you could:

Code: Select all

left:0;
right:0;
position: absolute;

Re: Making div tags fit every browser and screen

Posted: Fri Dec 10, 2010 11:25 pm
by Baseball435
Oh ok thanks