stuff you should know:
- IE has conditionals
- Every default browser installation will render pages without the head or body tag. If you are byte space sensitive, they are unnecessary
- < input > defaults to type=text
- Every default browser will render pages without quotation marks around attributes without whitespace.
<a id=blah style=display:none;background:blue href=site.php?q=something>link</a> will work fine.
This is because web browsers will take bad html. If you really really know what you are doing, bad html
can help make your life a lot easier. Additionally, no browser developer will voluntarily break correct generation of a page because of some pedantic w3c quarrel over the semantics of some deprecated tag. The browser will continue to support it because of the existence of outdated sites, for perpetuity. Given this, utilize it.
For instance, titles can be rewritten. You can have it more then once in a document - even if the w3 says no. It can ease up design.
If you want forms to submit on "enter" but want to avoid input type=submit, then you can do this
<form>
<input>
<input type=submit style=display:none>
</form>
This does work and has always worked (I've been using this trick since 1996 (?!) ). Any other ones (single text area, coupling input near the /form etc...) only work on some subset of browsers.
You can specify tabbing order with tabindex.
You can specify an access key (some UA's will take escape codes for enter) with accesskey
anchors have target types
_blank
The user agent should load the designated document in a new, unnamed window.
_self
The user agent should load the document in the same frame as the element that refers to this target.
_parent
The user agent should load the document into the immediate FRAMESET parent of the current frame. This value is equivalent to _self if the current frame has no parent.
_top
The user agent should load the document into the full, original window (thus cancelling all other frames). This value is equivalent to _self if the current frame has no parent.
Despite what designers tell you tables:
- Have a layout semantic built-in
- Will enjoy browser support for a
very long time
- Do not get confused
by any modern screen reader (The
media type and groups should be used
if you have this in your target
audience)
- has a table-spacing css
property for that painful
cellpadding/cellspacing/border
triplet issue to make the style not
inline and a one type cacheable
cost.
- will not wrap around and float to bottom on you, ever.
- They have a header, a body, and a footer tag for the header, body, and footer in your layout...