Mahdi_20
Member
این کد رو توی IE Browser نگاه کنین.. من Height جدول رو 100% دادم ولی این تو گوشش نمیره.. البته جدول اولی 100% هست، کسی میتونه جدول قرمز رنگ رو 100% کنه؟
مشکل چیه و راه حل اون چیه؟
مشکل چیه و راه حل اون چیه؟
کد:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled 2</title>
<style type="text/css">
html,body,table{
height:100%
}
}
</style>
</head>
<body style="margin:0px">
<table border="1">
<tr>
<td>1</td>
<td>
<table style="background-color:red" border="1">
<tr><td>2</td></tr>
</table>
</td>
</tr>
</table>
</body>
</html>