The word Lady is not visible when I run following code
In IE6 the text appears only when window is resized, eventually when font size is changed in browser. (Mozilla is OK.)
The behavior becomes normal if:
tag <hr> in script is removed
or
Division surrounding Lady.. is removed
or
background-color:#FFFFFF in #content style is removed.
Could someone explain it to me.
Thanks, Tom.
Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HEAD>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=Windows-1250">
<TITLE>Sarka Radova</TITLE>
<style type="text/css">
BODY {
FONT-SIZE: 80%;
COLOR: #0F0;
FONT-FAMILY: ARIAL CE, HELVETICA CE, ARIAL, HELVETICA, sans-serif;
background-color:#D1D1D1;
}
.footer {
FONT-SIZE: xx-small;
text-decoration:none;
text-align:center;
}
#content {
margin:10px 150px 50px 190px;
padding:10px;
text-align:center;
background-color:#FFFFFF;
color:#0000FF
}
</style>
</HEAD>
<BODY>
<div id=content>
<div><H1>Lady</H1><BR>1995 - 2003, v = 70 cm porcelain<br><br><br><br><br><br><br><br></div>
<SCRIPT TYPE="text/Javascript">
document.write ("<A NAME='Here'></A><HR>");
document.write ("<div class=footer>");
document.write ("© 2003, 2004 Sarka Radova, Jaselska, Czech Republic, tel. 123 456 789, atelier: Borivojova 108, 130 00 Praha 3, tel. 222 716 825<BR> home page <A HREF='[URL unfurl="true"]http://www.radova.cz'>[/URL] [URL unfurl="true"]www.radova.cz</A>");[/URL]
document.write (" , e-mail: <A HREF='Mailto:sarkaATradova.cz?subject=Mess from web'>sarkaATradova.cz</A>, last modified: ");
document.write (document.lastModified);
document.write ("<BR><BR></div>");
</SCRIPT>
</div>
</BODY>
</HTML>
The behavior becomes normal if:
tag <hr> in script is removed
or
Division surrounding Lady.. is removed
or
background-color:#FFFFFF in #content style is removed.
Could someone explain it to me.
Thanks, Tom.