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

1330
votes
36answers
723k views

RegEx match open tags except XHTML self-contained tags

I need to match all of these opening tags: <p> <a href="foo"> But not these: <br /> <hr class="foo" /> I came up with this and wanted to make sure I've got it right. I am ...
362
votes
8answers
33k 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 ...
45
votes
2answers
50k views

How to include another XHTML in XHTML using JSF 2.0 Facelets?

What is the most correct way to include another XHTML page in an XHTML page? I have been trying different ways, none of them are working.
322
votes
15answers
111k 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> ...
91
votes
14answers
49k views

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

What are all the valid self-closing elements (e.g. <br/>) in XHTML (as implemented by the major browsers)? I know that XHTML technically allows any element to be self-closed, but I'm looking ...
131
votes
12answers
12k views

Custom attributes - Yea 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 ...
33
votes
5answers
10k views

Is it possible to use JSF+Facelets with HTML 4/5?

Facelets relies on XML namespaces to work with XHTML. How are HTML 4, and as far as I know, HTML 5 do not support namespaces. Also HTML 5 has some new elements that are not available in XHTML. Even ...
77
votes
7answers
4k 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 ...
2
votes
8answers
5k views

Problems with CSS sticky footer

I am trying to implement a CSS sticky footer. The issue is there is a content DIV that is extending beyond its container causing scroll bars that are not desirable and the background-image hung off ...
146
votes
16answers
159k views

Make a div into a link

I have a <div> block with some fancy visual content that I don't want to change. I want to make it a clickable link. I'm looking for something like <a href="…"><div> … ...
69
votes
15answers
15k 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 ...
120
votes
16answers
36k 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?
31
votes
8answers
11k 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 ...
299
votes
5answers
173k views

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"> ... ...
68
votes
10answers
82k 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 ...
55
votes
5answers
35k views

A Space between Inline-Block List Items [duplicate]

Possible Duplicate: Unwanted margin in inline-block list items How to remove “Invisible space” from HTML Why do the inline-block list items have a space in them? No matter how I make my ...
30
votes
9answers
15k views

xHTML/CSS: How to make inner div get 100% width minus another div width

I have 2 nested divs inside outer one, which has width:100%. Both nested divs should be in one line and first should get it size from it's contents: <div id="#outer" style="width:100%; ...
16
votes
23answers
15k views

div class vs id

When using divs when is it best to use a class vs id? Is it best to use class, on say font variant or elements within the html? Then use id for the structure/containers? This is something I've ...
50
votes
8answers
4k 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 ...
40
votes
12answers
44k 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 ...
34
votes
12answers
60k 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
120
votes
8answers
21k 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>
39
votes
5answers
76k views

IE 8: background-size fix

I've tried to add background size to IE but it's not working at all: HTML <h2 id="news">Notícias <img src="white-marker.png" alt="" /></h2> CSS: div#content h2#news { ...
13
votes
8answers
4k views

Is it wrong to change a block element to inline with CSS if it contains another block element?

I know it's wrong to put a block element inside an inline element, but what about the following? Imagine this valid markup: <div><p>This is a paragraph</p></div> Now add ...
22
votes
4answers
25k views

XHTML and & (Ampersand) encoding

My website is XHTML Transitional compliant except for one thing: the & (ampersand) in the URL are written as it is, instead of &amp; That is, all my urls in pages are as usual as: <a ...
3
votes
1answer
2k views

Div Z-Index issue with Flash movie

I have two simple HTML divs one contains flash movie and another div contains simple text now my problem is that i have to put textual div onto the flash movie div what i am doing is setting the ...
2
votes
5answers
10k views

CSS Parent/Ancestor Selector [duplicate]

Possible Duplicate: Is there a CSS parent selector? I know this is a shot in the dark, but is there a way, using css only, CSS2, no jquery, no javascript, to select and style an element's ...
22
votes
5answers
3k 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 ...
34
votes
5answers
56k views

CSS: Hover one element, effect for multiple elements?

I'm looking for method for my hovering issue. <div class="section"> <div class="image"><img src="myImage.jpg" /></div> <div class="layer">Lorem Ipsum</div> ...
40
votes
15answers
11k 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 ...
72
votes
12answers
59k 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 ...
22
votes
8answers
15k views

When to use custom html tags? [closed]

What is the use case for using your own html tags? (In standard off the shelf browsers) A colleague and myself were discussing it lately. I could not think of a use case. We discussed it could be ...
44
votes
3answers
22k views

Select inputs and text inputs in HTML - Best way to make equal width?

I've got a simple form like so (illustrative purposes only)... <form> <div class="input-row"> <label>Name</label> <input type="text" name="name" /> ...
45
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 ...
44
votes
6answers
49k views

How do I retrieve 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 ...
36
votes
8answers
81k views

How do I center align horizontal <UL> menu?

I need to centre align a horizontal menu. I've tried various solutions, including the mix of inline-block / block / center-align etc., but not being successful. Can someone help me please? :) Here ...
24
votes
6answers
11k 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 ...
27
votes
6answers
88k views

How to make PDF file downloadable in HTML link?

I am giving link of a pdf file on my web page for download, like below <a href="myfile.pdf">Download Brochure</a> The problem is when user clicks on this link then If the user have ...
23
votes
14answers
14k views

Add centered text to the middle of a <hr/>-like line

I'm wondering what options one has in xhtml 1.0 strict to create a line on both sides of text like-so: Section one ----------------------- Next section ----------------------- Section two I've ...
10
votes
3answers
12k views

How to convert unordered list into nicely styled <select> dropdown using jquery?

How do I convert an unordered list in this format: <ul class="selectdropdown"> <li><a href="one.html" target="_blank">one</a></li> <li><a ...
29
votes
3answers
10k views

Specifying Tab-Width?

Is it possible to define the tab-width when whitespace is displayed (say within a <pre> tag or something)? I can't find anything to do this with CSS, but this seems like it would be a pretty ...
12
votes
8answers
36k views

window.onload() is not firing with IE 8 in first shot

I am trying to make my pages work correctly with IE 8, I found out from here: http://www.masykur.web.id/post/How-to-Make-Our-Website-to-be-Ready-for-IE8.aspx that, my page has to be XHTML 1.0 ...
13
votes
2answers
2k views

Why do browsers think this <div/> tag isn't immediately ended?

Given the following HTML: <div style="background-color:green"/> <div>text</div> Most browsers display the text in green which indicates that the <div/> shorthand is not ...
13
votes
8answers
1k views

Should I start with HTML or XHTML? [closed]

So which one to start with, HTML or XHTML? I am a beginner and wants to have solid foundations of markup language but as I started learning I found some people use HTML and some XHTML.
11
votes
7answers
7k views

innerHTML removes attribute quotes in Internet Explorer

When you get the innerHTML of a DOM node in IE, if there are no spaces in an attribute value, IE will remove the quotes around it, as demonstrated below: <html> <head> ...
9
votes
5answers
8k views

html5 vertical spacing issue with <img>

I am trying to create a layout where the vertical spacing between divs is pixel perfect. So far I've ruled out almost all the big grid systems (960.gs, Blueprint), because they have no solution at all ...
13
votes
11answers
2k views

I want to show list items as 2 or more columns (dynamic alignment)

I am able to do the list using float:left; like this But I would like to show it like this (as 2 or more columns) How can I do that? @sandeep gave good solution. Unfortunately does not work in ...
10
votes
17answers
842 views

What's the point of valid CSS/HTML?

If I've tested my pages in most major browsers, why would I need to maintain a validated code? I want to use box-shadows and corner radius if they're supported in WebKit browsers and Firefox. I don't ...
10
votes
5answers
3k views

How to use this square cursor in a HTML input field?

How can I use this square cursor ( image below ) in the input tags ?
43
votes
8answers
32k views

display: inline-block extra margin

EDIT From what I've found there is no way to remove the margin... except if you either have everything on the same line or, add comments to comment out the line breaks. example: <div>Some ...

1 2 3 4 5 14