
20-11-2007, 13:18
|
|
|
|
חבר מתאריך: 17.05.05
הודעות: 7,321
|
|
|
לאחר בדיקה, הקוד הבא יעבוד:
קוד:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Testcase for bug 192767</title>
<style>
html, body
{
text-align:right;
direction:rtl;
margin: auto;
overflow: auto; /*Fix IE's unnecessary scrollbar*/
height:auto;
}
body
{
overflow-x: scroll;
}
</style>
</head>
<body>
<div style="width:2000px; border: 1px solid red; text-align:left;">
Some text
</div>
</body>
</html>
הדבר העיקרי שהוספתי ושהוא חיוני, זה:
קוד:
overflow: auto; /*Fix IE's unnecessary scrollbar*/
עבור התגיות html,body
|