Forum: HTML and CSS Jul 22nd, 2009 |
| Replies: 7 Views: 416 There are two kinds of css failure:
1. The css has errors in it that prevent correct rendering.
2. The css renders, but not the way the page creator wants.
1. Look for the following css errors... |
Forum: HTML and CSS Jul 8th, 2009 |
| Replies: 7 Views: 941 You are designing for the quirks mode of the browsers without the doctype. If you are in quirks mode, the browsers do weird things.
Standard mode puts the surrounding styles (margin, border,... |
Forum: HTML and CSS Mar 24th, 2009 |
| Replies: 2 Views: 656 The xml line is not necessary, and causes errors on some browsers.
Look for styles containing both a size style (width, height) and a nonzero surrounding style (margin,. border, padding). These... |
Forum: HTML and CSS Feb 23rd, 2009 |
| Replies: 32 Views: 3,269 There is now a reason to use tables and css for layout, instead of divs and css.
Employers now prefer the table method. Our technical school instructors are now teaching this, instead of div and... |
Forum: HTML and CSS Feb 17th, 2009 |
| Replies: 5 Views: 533 0px is an invalid style. Place units of measure on nonzero values that need them. Do not place units of measure on zero values. It causes some browsers to throw the entire style away. |
Forum: HTML and CSS Dec 29th, 2008 |
| Replies: 17 Views: 4,578 One page could then contain a link to the other, in a place where it is seen immediately.
Actually, I don't wrote for mobile devices, because I wish that every one of them would be crushed by... |
Forum: HTML and CSS Nov 14th, 2008 |
| Replies: 2 Views: 466 I found two the validation service won't find:
1. You have an 0px style value in your p tag style. This is invalid in Firefox, and causes the entire p tag style to be thrown away. There may be... |
Forum: HTML and CSS Oct 31st, 2008 |
| Replies: 7 Views: 2,481 You have invalid code that causes FF to throw out the style it is in.
Zero values in styles must NOT have units of measures. Your 0px entries cause the style it is in to be thrown away by the... |
Forum: HTML and CSS Oct 5th, 2008 |
| Replies: 7 Views: 5,827 Both the center tag and the align= parameter are deprecated. They will stop working sometime in the near future, when HTML 4 is no longer supported. They do not work at all in XHTML now. Please don't... |
Forum: HTML and CSS Jun 10th, 2008 |
| Replies: 3 Views: 2,055 You have an improper nesting. The ul tag pair can't be inside a p tag pair. It kept the p tag pair from wrapping around the image. |
Forum: HTML and CSS May 2nd, 2008 |
| Replies: 2 Views: 759 Let's get rid of this "table vs css" idea. It's bogus.
Use table for tabular data, and other things that must be in clear rows and columns. You can use css to format the table nicer. Even rows of... |
Forum: HTML and CSS Jan 18th, 2008 |
| Replies: 12 Views: 2,627 I see some things:
- You have an absolute size and a surrounding style in the same style entry. Don't put padding and width in the same block object. You can put a padding of 0 in such a style... |
Forum: HTML and CSS Jan 12th, 2008 |
| Replies: 3 Views: 2,575 You need a lot of little pages, not one huge one. Navigate between them with links. |
Forum: HTML and CSS Dec 17th, 2007 |
| Replies: 3 Views: 848 I have done it. There is a trick to it:
Don't use the same block element for both something using a defined width or size (either absolute or relative), and a surrounding style (margin, border, or... |
Forum: HTML and CSS Oct 13th, 2007 |
| Replies: 21 Views: 15,088 The problem with the non-table methods is that they fall apart when the browser window size is different than the size planned for. Instead of making page image scroll (as it should), the browser... |
Forum: HTML and CSS Aug 1st, 2007 |
| Replies: 7 Views: 1,539 It does matter in Firefox, which follows the W3C standard. Firefox does not recognize uppercase or mixed case versions of styles and attributes in doctypes that prohibit them.
The style "height"... |