Questions tagged [xhtml-1.1]

XHTML 1.1 is a minor update to the original XHTML specification, in which previously deprecated elements were removed and XHTML 1.0 was modularized into a collection of abstract modules that provide specific types of functionality.

XHTML 1.1 made the following changes from XHTML 1.0:

  • On the a and map elements, the name attribute has been removed in favor of the id attribute
  • The "ruby" collection of elements has been added
22 questions
6
votes
3 answers

Dojo with application/xml+xhtml content-type

How can I get Dojo Dijits (1.5.0, currently) to work with XHTML as application/xml+xhtml? It works if sent as text/html, but application/xml+xhtml is required. This seems to be tied to dijit.form.DatePicker and a few others. This isn't a matter of…
mctom987
  • 854
  • 2
  • 9
  • 24
6
votes
3 answers

Why is target="_blank" not advisable to use with XHTML?

It's valid in XHTML 1.1 and WCAG 2.0 guidelines don't have any info about its usage? I know it's not valid in XHTML 1.0 strict, but if many people are using other things like JavaScript, jQuery, rel attribute, PHP etc. Does it make sense? It means…
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
5
votes
6 answers

Why isn't my document validating as XHTML 1.1 STRICT?

While target="_blank" is deprecated, why is the W3C validator not giving an error about this ? You can paste and check this code int the validator:
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
4
votes
3 answers

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 there's something better about it. obs: there are…
Hugo Mota
  • 11,200
  • 9
  • 42
  • 60
3
votes
6 answers

What is W3C latest officially recommended HTML and CSS version, for web development?

What are the latest HTML and CSS specifications officially recommended by the W3C for web development? Is it XHTML 1.1 and CSS 3?
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
2
votes
1 answer

Validation (CSS 2.1): 'behavior' is not a known CSS property name

I am using the whatever:hover script to mimic the :hover selector in IE6. The suggested use is to attach it to the body element as an IE6 behavior. but all my pages use XHTML 1.1, so CSS validation in VS2008 fails when I try to publish my site. Are…
akonsu
  • 28,824
  • 33
  • 119
  • 194
2
votes
4 answers

Why is XHTML1.1 dated *before* XHTML1.0 ? What is the preferred XHTML today?

I'm not clear on the status of XHTML - v1.0 versus v1.1. Can someone explain which is preferred at this point, and why? The specs from W3C say that XHTML 1.1 *predates** XHTML 1.0, which is very counter-intuitive, to…
Cheeso
  • 189,189
  • 101
  • 473
  • 713
2
votes
3 answers

Why does this generate no error in the W3C validator?

Generates no validation errors, does it mean both are valid?
Jitendra Vyas
  • 148,487
  • 229
  • 573
  • 852
1
vote
1 answer

Replace a word in an XML file through StreamReader in XNA?

Okay, so this is sort of a hack...but it may have to be. I'm writing an app in XNA, which from my research into this problem apparently doesn't support XML version 1.1. I'm reading in the contents of an ePub document, and one of the newer books…
Kevin Coppock
  • 133,643
  • 45
  • 263
  • 274
1
vote
1 answer

Microdata in XHTML 1.1: there is no attribute "itemprop"

I added Microdata to the product pages of my site. That leads to some errors. One of these errors is the following: there is no attribute "itemprop" The error is related to this source code line:
user3278588
  • 81
  • 1
  • 12
1
vote
1 answer

XHTML 1.1 and xml:space attribute for script tag

In XHTML 1.0, using the xml:space attribute in a tag is valid, but in XHTML 1.1 it is not valid (using the same markup). I can't find it in the docs...can anyone confirm it? Why has it been removed? Has it been replaced by something else? Sample to…
AlexV
  • 22,658
  • 18
  • 85
  • 122
1
vote
2 answers

How can I get the WordPress language_attributes function to return valid XHTML 1.1?

I have a WordPress template that contains the following element: > This returns:
dommer
  • 19,610
  • 14
  • 75
  • 137
0
votes
2 answers

XHTML: CSS does not display?

Not sure entirely what is happening, but I get the following errors from Internet Explorer and Google Chrome...yet it displays perfectly in Opera >_> Google This XML file does not appear to have any style information associated with it. The…
Ravenshade
  • 109
  • 3
  • 9
0
votes
1 answer

JTidy and XHTML 1.1: is it possible?

I need to transform HTML into XHTML 1.1. I'm doing it in a Java program, so I decided to use JTidy. But if you tell JTidy to transform output in XHTML, you get XHTML 1.0, not XHTML 1.1. I've found some posts on Google about Tidy and XHTML 1.1 from…
robob
  • 1,739
  • 4
  • 26
  • 44
0
votes
1 answer

W3C Validator doesn't like the use of
for xhtml 1.1 strict?

I get thrown out a bunch of errors on the xhtml 1.1 validator (W3C) whenever I use a element. As soon as I change the element to a
all the errors disappear. In browsers the forms work in both states (as a
or as a element, minus…
Osprey
  • 3
  • 4
1
2