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 compat …
7
votes
4answers
842 views
Strict XHTML compliance in ASP.NET 2.0/3.5
Are there any good methods for getting ASP.NET to valid under the XHTML strict DTD? I'm interested to hear some ideas before I hack up the core of the HTTP response.
One major pr …
5
votes
8answers
317 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.
3
votes
6answers
122 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 nam …
3
votes
3answers
486 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 t …
2
votes
4answers
91 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>
2
votes
1answer
138 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 …
2
votes
2answers
427 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.
1
vote
3answers
142 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%"> </div> only then it is rendered. Do I miss something?
Will min- …
1
vote
1answer
108 views
With XHTML strict the border affects the background color
Let's say I have the following minimalistic HTML code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html …
1
vote
3answers
218 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 …
1
vote
5answers
556 views
XHTML 1.0 Strict, CSS and img borders
I am using XHTML 1.0 Strict on my website and have the following CSS style on my links:
a:hover {
border-bottom: 1px dotted #447799;
}
and my images:
a img, img {
borde …
1
vote
4answers
2k views
How do I fade in/out a jQuery menu with sub menus?
Hi,
I am trying to make a menu that has many links and each link has its own sublist, this is what i am using..
<body>
<div id="menu">
<a href="#"><li>u …
1
vote
5answers
389 views
How to achieve two different alignments inside a html option tag?
I have a select html tag with country calling codes.
<select name="countryCallingCode" id="countryCallingCode">
<option value="1"><span class="name">Afghanis …
0
votes
2answers
66 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 &nb …
