Tagged Questions

XHTML, eXtensible HyperText Markup Language, is an application of HTML that is also a valid XML document, as opposed to standard HTML which is based on SGML. It is a markup language commonly used for webpages.

learn more… | top users | synonyms

191
votes
9answers
19k 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 ...
133
votes
13answers
46k views

When is a CDATA section necessary within a script tag?

Are CDATA tags ever necessary in script tags and if so when? In other words, when and where is this: <script type="text/javascript"> //<![CDATA[ ...code... //]]> </script> ...
112
votes
40answers
14k views

Hidden features of HTML [closed]

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 ...
89
votes
12answers
6k 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 ...
73
votes
1answer
43k views

jQuery How to move an element into another element?

I would like to move one DIV element inside another. For example, I want to move this (including all children): <div id="source"> ... </div> into this: <div id="destination"> ... ...
66
votes
12answers
3k 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 ...
61
votes
16answers
12k 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?
52
votes
7answers
2k 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 ...
49
votes
8answers
32k views

Replacing h1 text with a logo image…best method for SEO?

It seems like there are a few different techniques out there, so I was hoping to get a "definitive" answer on this... On a website, it's common practice to create a logo that links to the homepage. I ...
46
votes
14answers
27k views

What are all the valid self-closing tags in XHTML (as implemented by the major browsers)?

What are all the valid self-closing tags (e.g. <br/>) in XHTML (as implemented by the major browsers)? I know that XHTML technically allows any tag to be self-closed, but I'm looking for a list ...
43
votes
14answers
9k views

So what if custom HTML attributes aren't valid XHTML?

I know that is the reason some people don't approve of them, but does it really matter? I think that the power that they provide, in interacting with JavaScript and storing and sending information ...
43
votes
13answers
55k views

Make a DIV Into a Link

I am looking for an XHTML 1.1 valid way to make a DIV into a clickable link.
42
votes
18answers
3k 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 ...
34
votes
12answers
27k views

Can an html element have multiple ids?

I understand that an id must be unique within an HTML/XHTML page. My question is, for a given element, can I assign multiple ids to it? <div id="nested_element_123 task_123"></div> I ...
32
votes
7answers
1k views

Is it ok to use <strong> in place of <b> blindly?

Note: I know <b> is presentational and <span style="font-weight:bold> is a better way, and <strong> and <em> are for emphasis but my question is not regarding this. Should ...
32
votes
9answers
2k 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 ...
32
votes
7answers
33k views

100% Min Height CSS layout

What's the best way to make an element of 100% minimum height across a wide range of browsers ? In particular if you have a layout with a header and footer of fixed height how do you make the middle ...
31
votes
9answers
87k views

How to style <select> dropdown with css only without javascript?

Is there a css only way to style <select> dropdown? I need to style a form as much as humanly possible without any javascript intervention. What are the properties I can use to do so in CSS? ...
31
votes
12answers
26k views

HTML 5 versus XHTML 1.0 Transitional?

It seems that HTML 5 is going to be supported (partially) by Firefox 3.1 and other browsers. It is adding support for video and audio as tags, but these are new tags that XHTML 1.0 Transitional does ...
29
votes
14answers
113k views

How do you make <div>s display inline?

Given this HTML: <div>foo</div><div>bar</div><div>baz</div> How do you make them display inline like this: foo bar baz not like this: foo bar baz ...
27
votes
4answers
5k views

Can we have multiple <tbody> in same <table>?

Can we have multiple <tbody> in same <table>? If yes then in what scenarios we should use multiple <tbody>
26
votes
3answers
7k views

Are nested span tags OK in XHTML?

Will this validate in XHTML? <span>hello<span>world</span></span>
25
votes
14answers
2k 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 ...
24
votes
16answers
1k 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 ...
24
votes
8answers
7k views

Is writing self closing tags for elements not traditionally empty bad practice?

I have noticed jQuery (or is it Firefox) will turn some of my <span class="presentational"></span> into <span class="presentational" /> Now my question is, is this okay to write my ...
22
votes
4answers
298 views

Undefined behaviour in (X)HTML?

I know this question is pretty much asking for downvotes, but... Is there such a thing as undefined behaviour in (X)HTML? I have wondered this after playing around with the <button> tag, ...
22
votes
9answers
2k views

Why do 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 ...
22
votes
15answers
5k views

Why should I use 'li' instead of 'div'?

I'm not sure why I need to use ul-li vs simply using divs when listing items. I can make both look exactly the same so where is the functional advantage to creating an unordered list vs lining up ...
21
votes
6answers
5k views

Why do some major websites use invalid HTML?

I noticed that many websites, even Google and some banking sites, have poorly-written HTML with no quotes around the values of attributes, or using characters such as ampersands not escaped correctly ...
20
votes
5answers
9k views

What is the best HTML5 book? [closed]

What is the best and most comprehensive HTML5 book? Is it necessary to study HTML4 after/before the HTML5 book? If there is no goo HTML5 book yet, what is the best HTML book in general?
20
votes
8answers
27k views

How to parse XML in Bash?

Ideally, what I'd like to be able to do is: cat xhtmlfile.xhtml | getElementViaXPath --path='/html/head/title' | sed -e 's%(^<title>|</title>$)%%g' > titleOfXHTMLPage.txt
19
votes
11answers
7k views

Best Way to View Generated Source of Webpage?

I'm looking for a tool that will give me the proper generated source including DOM changes made by AJAX requests for input into W3's validator. I've tried the following methods: Web Developer ...
19
votes
14answers
2k 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 ...
19
votes
6answers
6k views

What are the different doctypes in html and what do they mean?

As the title describes, what are the different doctypes available and what do they mean? I notice that the layout looks a little different in IE7 when I switch from <!DOCTYPE HTML PUBLIC ...
18
votes
5answers
2k views

HTML 4, HTML 5, XHTML, MIME types - the definitive resource

The topics of HTML vs. XHTML and XHTML as text/html vs. XHTML as XHTML are quite complex. Unfortunately it's hard to get a complete picture, since information is spread mostly in bits and pieces ...
18
votes
5answers
11k views

How do I retreive an HTML element's actual width and height?

Suppose that I have a <div> that I wish to center in the browser's display (viewport). To do so, I need to calculate the width and height of the <div> element. What should I use for ...
17
votes
4answers
4k views

what actually is PCDATA and CDATA?

it seems that a loose definition of PCDATA and CDATA is that 1) PCDATA is character data, but is to be parsed. 2) CDATA is character data, and is not to be parsed. but then someone told me that ...
17
votes
7answers
8k views

What's the best WYSIWYG editor when using the ASP.NET MVC Framework?

Was wondering what the best WYSIWYG editor that I can embed in a web-site based on the ASP.NET MVC Framework? Ideally it should be Xhtml compliant and allow users to embed images etc. The only one ...
17
votes
9answers
2k views

HTML vs XHTML does it still matter?

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 the horse's ...
17
votes
8answers
36k views

Vertically align text within input field of fixed-height without display: table or padding?

The line-height property usually takes care of vertical alignment, but not with inputs. Is there a way to automatically center text without playing around with padding?
17
votes
23answers
1k views

What do you wish you knew before you spent hours trying to fix a bug in IE6

Mine would have to be the float and margin bugs... If you float an element, and then specify a margin for it, it will double the margin. The solution to this is to add display: inline to the ...
17
votes
8answers
10k views

Best XML writing tool for Python

I'm currently trying ElementTree and it looks fine, it escapes HTML entities and so on and so forth. Am I missing something truly wonderful I haven't heard of? This is similar to what I'm actually ...
16
votes
13answers
588 views

When is it OK to use Javascript and when not?

Is it good practice not to use much javascript/jquery? Should we avoid it as much as possible (for good accessibility)? When is it OK to use JavaScript and when is it not in web design and ...
16
votes
12answers
1k views

What would be some reasons to decide against HAML/SASS?

I've been reading up about HAML/SASS lately and I'm not quite sure why any one would not want to use it. It seems to be very easy to switch, makes things cleaner and more efficient. Update: What ...
16
votes
2answers
4k views

What is xhtml's role attribute? What do you use it for?

I have read w3's page on this here, but it is still vague to me. Is the role attribute's purpose to clarify the code? Or will it be interpreted by some browsers or spiders? Can it be used as a dom ...
16
votes
6answers
25k views

CSS - Border only inside the table

I am trying to figure out how to add border only inside the table. When I do: table { border: 0; } table td, table th { border: 1px solid black; } The border is around the whole table and ...
16
votes
13answers
4k views

<br/> vs <div/> in clearing

What is the difference <br style="clear:both;"/> vs <div style="clear:both;"/> ?? Also, I thought <div style="clear:both;"/> is a good way of clearing, but is <div ...
16
votes
6answers
29k views

Tick symbol in HTML/XHTML

We need to display a tick symbol within an internal web app and would ideally like to avoid using an image. Has to work starting with IE 6.0.2900 on a XP box, ideally we need it be cross-browser (IE ...
16
votes
10answers
6k views

How to convert HTML to XHTML?

I need to convert HTML documents into valid XML, preferably XHTML. What's the best way to do this? Does anybody know a toolkit/library/sample/...whatever that helps me to get that task done? To be a ...
16
votes
12answers
1k 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 ...

1 2 3 4 5 77