Simple CSS Tips

I’m always on the lookout for CSS Tips that might help you with your site design and make your work a little simpler. Simple CSS Tips that Go a Long Way has a few suggestions you might want to try out.

Sometimes it’s the little things that can make all the difference and there are plenty [...]

max-width and IE6

I have been working on a new set of templates to offer to the Migrating from FrontPage to Expression Web EBook owners and class students. I wanted to use a photo taken by a friend in the masthead. I also wanted to limit the width of the container for the page content to no wider [...]

Mastering CSS Coding: Getting Started

Smashing Magazine is a great online resource. Todays offering is Mastering CSS Coding: Getting Started.

CSS has become the standard for building websites in today’s industry. Whether you are a hardcore developer or designer, you should be familiar with it. CSS is the bridge between programming and design, and any Web professional must have some general [...]

CSS Resources

Expression Web is designed to create standards compliant websites which use cascading style sheets and separates content from presentation. In order to use Expression Web, you need to learn at least the basics of both CSS and writing HTML/XHTML code.  35 Websites To Teach You How To Use CSS Effectively presents a list of many [...]

Centering table or div on Page

One question that seems to reappear again and again is “How can I center my table or div on my page?” It’s really fairly simple. First remember:

Use a valid doctype on your page
The <table> or <div> has to have a width less then 100%
The left and right margins need to be set at auto

You can [...]