transitional

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

拈花ヽ惹草 提交于 2019-12-24 17:22:36
问题 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önnen Sie mehrere Suchbegriffe auf einmal eingeben!<br /> Um <b>Zeilen zu löschen</b>, selektieren Sie diese bitte und klicken dann auf <i>'Zeile(n) löschen'</i>.<br /> Um <b>einen Datansatz zu bearbeiten</b>, klicken Sie einfach zweimal auf die Zelle und dann auf <i>'Done'</i>.<br /> Um <b>eine Zeile hinzuzufügen</b>, klicken Sie auf <i>

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

…衆ロ難τιáo~ 提交于 2019-12-17 09:58:47
问题 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 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Test1</title> </head> <body> <div style="border: 2px solid red; height: 100%"> Hello World </div> </body> </html> Will render the DIV with the height of the text, it will not stretch. Removing the DOCTYPE declaration

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

北城余情 提交于 2019-11-30 18:12:22
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 by zeros and ones created with text image , and the problem is that the code uses deprecated tag font and looks like this <!-- IMAGE BEGINS HERE --> <pre> <font size="-3"> <font color="#000000">0001100000101101100011</font> <font color="#010000">00</font> <font color="#020101">0</font> <font color="#040101">0</font> <font color="#461919">1</font> <font color="#b54f4f">1</font> ...etc.etc... </font

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

五迷三道 提交于 2019-11-30 01:42:23
问题 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 by zeros and ones created with text image, and the problem is that the code uses deprecated tag font and looks like this <!-- IMAGE BEGINS HERE --> <pre> <font size="-3"> <font color="#000000">0001100000101101100011</font> <font color="#010000">00</font> <font color="#020101">0</font> <font color

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

☆樱花仙子☆ 提交于 2019-11-27 09:25:30
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 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>Test1</title> </head> <body> <div style="border: 2px solid red; height: 100%"> Hello World </div> </body> </html> Will render the DIV with the height of the text, it will not stretch. Removing the DOCTYPE declaration causes the DIV to stretch vertically as desired. So my questions are: Why does it happen? How do you keep