39
votes
11answers
2k views
How would YOU do this: Tables or CSS?
Part I
This layout can be done quite simply with 2 HTML tables, one nested inside the other, or even with a single table.
It can also be done with CSS, though it might involve a little more …
38
votes
35answers
4k views
Hidden Features of HTML
HTML being the most widely used language (at least as a markup language) has not gotten its due credit.
Considering that it has been around for so many years, things like the FORM / INPUT controls …
28
votes
7answers
616 views
What’s up, Doctype?
What is doctype and why do I want to use it?
What are the different doctypes I can use?
What is the difference between standards and quirks mode, what are some quirks I may run into with differently …
26
votes
10answers
1k views
Custom attributes - Yay or nay?
Recently I have been reading more and more about people using custom attributes in their HTML tags, mainly for the purpose of embedding some extra bits of data for use in javascript code.
I was …
25
votes
9answers
3k views
Why don’t self-closing script tags work?
What is the reason browsers do not correctly recognize:
<script src="foobar.js" /> // self-closing script tag
Only this is recognized:
<script src="foobar.js"></script>
Is it …
23
votes
18answers
1k views
At the end of the day, why choose XHTML over HTML?
I wonder why I should use XHTML instead of HTML.
XHTML is supposed to be "modularized", but I haven't seen any server side language take advantage of any of that.
XHTML is also more strict, and I …
22
votes
13answers
2k views
What’s the difference between <b> and <strong>, <i> and <em>?
What's the difference between <b> and <strong>, <i> and <em> in HTML/XHTML? When should you use each?
19
votes
9answers
734 views
When Should One Use HTML Entities
This has been confusing me for some time. With the advent of utf-8 as the de-facto standard in web development I'm not sure in which situations I'm supposed to use the html entities and for which ones …
16
votes
9answers
764 views
Why Google and Twitter use table layout? [closed]
Possible Duplicate:
Does it make sense to use the <table> tag on a “modern” website?
Everywhere I go I see don't use table layout, it's evil, even Google says that, so why …
15
votes
13answers
611 views
What’s the need for XHTML?
In an interview I was asked a question that I'd never thought about, which was "We already have HTML which fulfills all the requirements of writing a web page, so what's the need for XHTML?"
I …
15
votes
14answers
663 views
Order of tags in <head></head>
does it matter at all what order the <link> or <script> or <meta> tags are in in the <head></head>?
(daft question but one of those things i've never given any thought …
15
votes
12answers
604 views
Is XHTML compliance pointless?
I'm building a site right now, so far I've painfully forced everything to be compliant and it looks pretty much the same across browsers. However, I'm starting to implement some third party/free …
14
votes
9answers
815 views
HTML vs XHTML does it still matter?
Hi all,
I'm wondering if I should bother at all about the markup language, as long as i produce valid markup.
I've read articles that point out HTML is the best choice and they come directly from …
14
votes
14answers
1k views
What problem does XHTML strict solve?
I really don't understand the fascination with XHTML strict. Inline JavaScript typically requires a rats nest of escapes to make it compatible with XHTML and semi-backwards compatible with MSIE 5 …
13
votes
24answers
954 views
What (free) web development IDEs do people use?
I'm after a free (and Free) lightweight IDE at least on Windows, and preferably cross-platform as well, which handles:
XHTML, CSS and Javascript (maybe even jQuery..!) syntax highlighting
FTP …
