Forum Moderators: not2easy
The below code shows up fine in IE 6.0 but not in Netscape 7.2. It would work fine if I use <div align=center> but i want it to be controlled form the style sheet.
please help.:(
Lalith
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<style>
.container{
text-align:center;
}
p{
font-family: Verdana, Helvetica, sans-serif;
font-size: 11px;
text-align: justify;
font-weight: normal;
width:540px;
}
</style>
<body>
<div class="container">
<p>this is a test alsdhf aosdi fa aiosuhgf aious gaiushgakoustyr faiosuf ausgdpri7u ausyd asudygqyug98 asiudfgy[q worhg97w8ry gaus7thwr8ya sudhqwyhe as98yhgf 9w8ryt g8asy sid fapisd fpasjdf</p>
<p>askduh faosuhd foasuih dfo[aish dfo[iahsdasdfag asdf gasd fasdiof apsioud fapsioud fpaious dfaduas df asdofya sdg fas dg asdf gasoidfg asoidfg aoshgd aosg [oaisdg foaisg oiasfd[goias oghaoshig oasi goaihg oiaihs goihas o[giha s[oigh a[osihg a[oifha s[dohjf a[osidh fgo[aish </p>
<p>aisugd faousihd foasihd foaish dfioasd</p>
</div>
</body>
</html>
.container {
margin: 0 auto;
}
I thought IE6 had stopped doing this so you've probably got it in quirks mode with your broken doctype. Try using a proper one instead and see if it fixes it:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
please help:(
thanx
lalith.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<style>
.container {
margin: 0 auto;
}
p{
font-family: Verdana, Helvetica, sans-serif;
font-size: 11px;
text-align: justify;
font-weight: normal;
width:540px;
}
</style>
<body>
<div class="container">
<p>this is a test alsdhf aosdi fa aiosuhgf aious gaiushgakoustyr faiosuf ausgdpri7u ausyd asudygqyug98 asiudfgy[q worhg97w8ry gaus7thwr8ya sudhqwyhe as98yhgf 9w8ryt g8asy sid fapisd fpasjdf</p>
<p>askduh faosuhd foasuih dfo[aish dfo[iahsdasdfag asdf gasd fasdiof apsioud fapsioud fpaious dfaduas df asdofya sdg fas dg asdf gasoidfg asoidfg aoshgd aosg [oaisdg foaisg oiasfd[goias oghaoshig oasi goaihg oiaihs goihas o[giha s[oigh a[osihg a[oifha s[dohjf a[osidh fgo[aish </p>
<p>aisugd faousihd foasihd foaish dfioasd</p>
</div>
</body>
</html>