Tagged Questions

XHTML 1.0 Strict is the XML equivalent to strict HTML 4.01, and includes elements and attributes that have not been marked deprecated in the HTML 4.01 specification.

learn more… | top users | synonyms

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 ...
14
votes
9answers
5k 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%; ...
10
votes
3answers
2k views

XHTML 1.0 Strict (or Transitional) compliance in ASP.NET 2.0/3.5

Are there any good methods for getting ASP.NET 2.0 to validate under the XHTML 1.0 Strict (or Transitional) DTD? I'm interested to hear some ideas before I hack up the core of the HTTP response. One ...
6
votes
1answer
2k views

“Converting” XHTML 1.0 Strict to HTML5

OK folks, So I have a valid XHTML 1.0 Strict webpage. I'm aware of the differences between XHTML and HTML, but, what are the differences between XHTML and HTML 5? Would a 'conversion' be as easy as ...
6
votes
3answers
430 views

Are single quotes valid in HTML/XHTML?

Are single quotes valid in HTML? And more specifically: XHTML strict. <table width="100%"> <table width='100%'>
5
votes
2answers
157 views

Is there a Java web framework that can reliably produce XHTML 1.0 Strict?

I'm starting a Java project where the client has mandated the use of XHTML 1.0 Strict. JSF Facelets, being XHTML-based seemed a good option at first, but I've found that they cannot be made to produce ...
5
votes
6answers
161 views

Is it considered more professional to write a website in strict rather than transitionl html?

I was wondering if it was considered more professional to write a website in strict xhtml rather than transitional. Is it something that should be done as you advance as a web developer, or is it ...
5
votes
4answers
512 views

html doctype adds whitespace?

can someone please explain to me why having a doctype of <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> and <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"> ...
5
votes
1answer
439 views

HTML Strict increases line height

Why does XHTML 1.0 Strict display a line height as appearing larger than a line height of the same value in XHTML 1.0 Transitional? This therefore pushing down content within table cells (i.e Hotmail ...
5
votes
3answers
2k views

Embed YouTube videos while staying XHTML 1.0 Strict?

Is there a way to embed a YouTube video while still staying standards compliant (XHTML 1.0 Strict)? Thanks in advance.
5
votes
8answers
429 views

Is It Ever Justified To Open A New Window/Tab From A Hyperlink?

Simple question, spurred on by the removal of the target attribute in HTML 4.0 Strict and XHTML 1.0 Strict.
4
votes
1answer
467 views

List of IE9 Standards Mode changes

I would like a (extensive) list of changes that have been made to the behavior of IE9 in standards mode. As an example, I recently debugged an issue in SWFObject and found that IE9 now returns typeof ...
4
votes
3answers
4k views

Is it possible to render empty <div style=“width:50%”> </div> with CSS in xHTML strict 1.0 without setting width and height in pixels?

Is it possible to render empty <div style="width:50%"> </div> with CSS in xHTML strict 1.0 without setting width and height in absolute values and not adding &nbsp; inside? Targets ...
4
votes
4answers
948 views

Can we place `<img>` inside `<h1>` according to web standards?

Can we place <img> inside <h1> according to web standards? like this <h1> Demo text <img src="anyimage.jpg"/> </h1>
4
votes
5answers
1k views

XHTML won't validate && and < in a JavaScript function

Here's the snippet of code that won't validate: if (user_age > 15 && user_age < 91) It gets the following errors: XML Parsing Error: StartTag: invalid element name and XML ...
4
votes
1answer
650 views

quicktime movie layering issues

I have a site (link below) where the clients work displays on a long horizontal page. The menu is fixed on the left hand side and the images disappear under the menu when scrolling across. The client ...
3
votes
1answer
117 views

How to make tinyMCE content for ASP.Net MVC as XHTML strict?

How to make tinyMCE editor content of ASP.Net MVC page to XHTML strict?
3
votes
2answers
111 views

Is this a standards-compliant result?

Here's my code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" ...
3
votes
4answers
2k views

XHTML Strict 1.0 - target=“_blank” not valid?

I just validated my actual XHTML Strict 1.0 doc with the w3c validator service.. and it says that, <ul id="socialnetwork"> <li><a href="http://www.twitter.com" ...
3
votes
3answers
2k views

Can I add Microdata from HTML5 to a XHTML Strict site and still be compliant?

I've got a site coded in XHTML 1.0 Strict. I want to use the new Microdata to add breadcrumbs to my site (so Google will understand them). My old non-microdata marked-up breadcrumbs look like this: ...
3
votes
1answer
393 views

Open Graph Protocol is not a valid XHTML 1.0 Strict?

The protocol: http://opengraphprotocol.org/ states the use of <meta> tags with the attribute property. AFAIK, this is not a valid XHTML 1.0 Strict value. Is there any design decision over why ...
3
votes
1answer
399 views

Validation errors from Google App Engine Logout link

I am making a web page using the Google App Engine. I am validating my pages, and found that the logout link that is generated by the call to the users api (in python) ...
3
votes
3answers
704 views

why won't this validate (jquery problem)?

On my site I'm using the jquery cycle plugin for a slideshow with a pager. This example: http://malsup.com/jquery/cycle/pager.html So in the head of my document, I have a script similar to: ...
3
votes
3answers
2k views

Ordered Lists <OL>, Starting index with XHTML Strict?

Is there a way to start an ordered list from a specific index while following XHTML Strict? Using start=n works well, but has been deprecated… The intended purpose is to resume the index with ...
2
votes
3answers
134 views

What happens when a XHTML DOCTYPE doesn't validate?

Life is good, using XHTML Strict with much success <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> ...Then, bam! You toss a Vimeo ...
2
votes
4answers
134 views

What is the Maxmium no of input tag in an html form?

i can't find any information inside the w3c html strict spec http://www.w3.org/TR/html4/sgml/dtd.html
2
votes
5answers
353 views

Custom data in XHTML 1.0 Strict

I use some custom attributes in my html, for jquery stuff. I saw there are data-XYZ attributes in HTML5, but I need to be xhtml 1.0 strict. What other options do I have?
2
votes
1answer
59 views

accessibility - label attributes for radiobuttons

I have a form which contains a 'gender' label and two radio buttons'male' and 'female'. How can I put 'label for' in this particular scenario ? <label for="username">User Name</label> ...
2
votes
2answers
727 views

how to validate noscript+meta refresh tag in xHTML?

For visitors that don't support JS I'm redirecting them to a certain page "js.html" For this I have the following in all my files: <noscript> <meta http-equiv="Refresh" ...
2
votes
3answers
240 views

New site - XHTML 1 Strict or HTML 5

I'm beginning a very large project in the coming weeks and am trying to decide if I should take the leap into HTML5 land or stick with my time trusted XHTML 1 strict. The site will be huge. ...
2
votes
5answers
303 views

Nest lists in paragraphs in html

It seems that (strict) html doesn't allow nesting any non-inline elements inside a <p>, but then how am I supposed to render a paragraph that contains a list (something that occurs often in ...
2
votes
1answer
394 views

ASP.NET XHTML Strict Validation & autocomplete=off

We have an ASP.NET form with the following doctype:- We need to add autocomplete=off (by setting the TextBox property of AutoCompleteType="Disabled") to the input fields but still need the form to ...
2
votes
3answers
305 views

Horizontal <ul> menu: how to fix the width of list items

I have a horizontal <ul> menu. How can I fix the width of the <li> elements at, say, 250px each?
2
votes
1answer
1k views

Textarea spellcheck attribute XHTML Strict

I would like to turn off the built-in spellcheck functionality in certain browsers such as Firefox and Opera on a textarea that contains HTML embed code for visitors to copy and paste. This can be ...
2
votes
3answers
2k views

Why <div style=“width:50%” /> is not rendered in xHTML?

Why <div style="width:50%" /> is not rendered in xHTML? If I do <div style="width:50%"> &nbsp; </div> only then it is rendered. Do I miss something? Will min-width help? I use ...
2
votes
6answers
4k views

Why won't this XHTML form validate?

Any ideas why this won't validate here: http://validator.w3.org/#validate_by_input It seems the form input tags are wrong but reading through the XHTML spec they should validate fine. Any ideas? ...
1
vote
4answers
69 views

How to fix form action issue in XHTML 1.0 Strict

I've got an issue with validating my code to XHTML 1.0 Strict. I've been using the w.3 validator to try and validate my page. It tells me Line 112, Column 24: required attribute "action" not ...
1
vote
2answers
42 views

Issues with JavaScript and XHTML Strict Code

I have an issue with meeting XHTML Strict requirements for a class assignment. The class assignment says to use java script to generate a table, but only the array can be use in an external javascript ...
1
vote
1answer
28 views

If there a valid way to change text styles within a hyperlink?

I am trying to validate my code as follows: <ul class="work"> <li> <a href="work1.html"> <img src="images/work_1.png" alt="Work 1 Logo" /> <h4>Lorem ipsum ...
1
vote
1answer
41 views

Is it possible to make a button call a JavaScript function in XHTML Strict 1.0?

In plain old HTML the following code will work: <input type="button" value="click" onClick="function()" /> However; in XHTML Strict 1.0 this code will not validate, saying that "there is no ...
1
vote
1answer
110 views

PHP strip non-SGML characters from a string?

I've got nonstandard characters coming out of my database (due to line breaks). My HTML validator is complaining about them. Since my HTML validator is a direct extension of my ego, I'd like to ...
1
vote
2answers
139 views

What are the differences between xhtml 1.0 strict and xhtml 1.1?

xhtml 1.1 is the evolution of xhtml 1.0, right? So i wonder what are the main differences between them. I've been using xhtml 1.0 strict for a while but, if there's an evolution, i'd like to know if ...
1
vote
2answers
62 views

Xhtml write URL,which one is correct?

I need to write a url within a javascript, but do not know if I should write & for & symbol. <script type="text/javascript"> <![CDATA[ var link = 'http://example.com/query?id=1' . ...
1
vote
2answers
125 views

IE breaking page, and invalid markup validation

I have finished the layout and completed the webpage (www.blisshair.com.au) but i have run into what I think is a major issue. When building the webpage, I only used firefox to check the layout, and ...
1
vote
2answers
922 views

How can I view Arabic/Persian numbers in a HTML page with strict doctype?

I have an HTML page that is right-to-left. When I don't use any doctype, my numbers are in Arabic/Persian, but when I use strict mode they turn to English. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML ...
1
vote
3answers
629 views

Several xml errors using Facebook JS SDK with xhtml strict

I'm trying to set up some like buttons to a project. These buttons live inside a jquery slideshow with Aino's Galleria and let you "Like" each different slide. I'm using an xHTML strict document and ...
1
vote
3answers
288 views

Why do I get a warning from xml:lang attribute?

Aptana gives me a warning saying "<html> has XML attribute xml:lang" Here is the line. What's wrong here? <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
1
vote
1answer
432 views

XHTML strict span inside label is sementic

hi Im using xhtml strict. I want to put a SPAN tag inside LABEL tag. Is it correct way ? <label>Username <span>*</span></label><input type="text" .... />
1
vote
0answers
254 views

Trouble closing img tags in Javascript – using strict xhtml DTD

I am using a Javascript called Niceforms.js which makes HTML forms looks pretty. It works fine under the xHTML Transitional Doctype, but I need to build my site using Strict xHTML. It has a few ...
1
vote
4answers
1k views

Multiple Html <head> in the browser , caused by DreamWeaver bom

I am using DreamWeaver to code xHtml docs. in the program the code is valid but when I upload it in the inspect element I see double <head> tags and when I right-click to see the source file it ...

1 2 3