Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Master Style sheet

Status
Not open for further replies.

CassidyHunt

IS-IT--Management
Jan 7, 2004
688
US
Does anyone know if there is such a thing as a master style sheet that you can use as a template that has already predefined the best practices for all browsers?

 
Nope.. never heard of one -- but it would be a nice thing to have/make.
 
One of the things to make sure you do in each project is to reset the margins and paddings to zero on each element otherwise you'll find that each browser adds their own unique amount. I always use something like:
Code:
* {
	padding: 0px;
	margin: 0px;
}
or
Code:
html, body, form {
	padding: 0px;
	margin: 0px;
}


____________________________________________________________

Need help finding an answer?

Try the Search Facility or read FAQ222-2244 on how to get better results.

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top