Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
1k views

Why certain DOCTYPE declarations cause 100%-height tables and divs to stop working?

It seems to me that some DOCTYPE declarations in IE (6-8) may cause the browser to ignore height="100%" on tables and divs (style="height:100%") E.g <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 ...
4
votes
4answers
1k views

What tag should I use instead of deprecated tag font in html (cannot use CSS)

this question can create a misunderstanding: I know I have to use CSS to validate successfully my document as XHTML 1.0 Transitional. The fact is that I have to embed in my webpage a picture composed ...
3
votes
3answers
207 views

Is html 5 <!DOCTYPE html> equivalent to html 4 transitional doctype?

If I set the doctype to the HTML 5 <!DOCTYPE html>, this will set browsers into standards mode. Does that mean that most modern browsers will behave as if they are in HTML 4.01 Transitional ...
2
votes
1answer
106 views

How to Be Python 3 Ready?

What are the current rules for writing python code that will pass cleanly through 2to3 and what are the practices that seem to be best suited to writing code that will not become mired forever in ...
2
votes
1answer
601 views

Going to IE8 with DOCTYPE HTML 4.01 Transitional any suggestions appreciated

we use in all our pages in the 1st line of our HTML code the: <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> We are moving on to the ...
1
vote
4answers
131 views

Is this possible in XHTML: tags in a title-attribute?

I got following code in an XHTML-document and every browser saysit is malformed :( <a class="tooltip" title="Um nach einem <b>Datensatz zu suchen</b>, k&ouml;nnen Sie ...
1
vote
1answer
14k views

javascript style.width not working in firefox with transitional doctype

I have a script that animates a small DIV popping up on the page. It all works fine in IE, and in FF if I remove the DOCTYPE, but when the DOCTYPE is XHTML/Transitional, in Firefox, the width does not ...
0
votes
0answers
21 views

jCarousel not displaying when using Transitional Doctype in the HTML

I have a working jCarousel in place and am currently modifying the html page to change the look and feel of the same page. For this purpose, I am placing a transitional doctype in the header as ...
-2
votes
1answer
62 views

XHTML Transitional 1.o Highlight single word within unordered ul tag

I have an unordered list and each item is a sentence. I would like to highlight a word or two within the sentence but the font color tag <font color="CC9966">highlighted words </font> ...