Jump to content
  • 0

Строгий доктайп и height


Kenshi45
 Share

Question

Почему-то при заданном

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

Таблицы с параметром height="100%" не хотят занимать все пространство по вертикали.

Как это исправить?

Link to comment
Share on other sites

17 answers to this question

Recommended Posts

  • 0

Размер в процентах должен идти от чего-то(относительно чего 100%?), в данном случае все идет относительно родителя body так что еще задай в стилях

html, body {

height:100%;

min-height:100%;}

Edited by woofs
Link to comment
Share on other sites

  • 0

Подставил его доктайп

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<title></title>
<style>
html, body {
height:100%;
min-height:100%;}
</style>
</head>

<body>
<table width="500" height="100%" border="1" bgcolor="#FF0000">
<tr>
<td>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"></td>
<td></td>
</tr>
</table>
</body>
</html>

Link to comment
Share on other sites

  • 0

И если я правильно понимаю, только в IE??, помоймо на форуме эт гдето было...

И если я правильно понимаю, только в IE??, помоймо на форуме эт гдето было...

Знаю что кто верстает таблицами иногда выходит из этого путем нескольких таблиц, но это смотря какой макет...

Link to comment
Share on other sites

  • 0
И если я правильно понимаю, только в IE??, помоймо на форуме эт гдето было...

Знаю что кто верстает таблицами иногда выходит из этого путем нескольких таблиц, но это смотря какой макет...

Вопрос не понятен, в каком плане?

Можновнрстать таблицами, можно слоями....

Я имел ввиду не страницы, а таблицы, и именно через строгий доктайп. Размеры, которые получаются вообще не соответствую тому, что я ввел.

<!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" lang="ru" xml:lang="ru" dir="ltr">
<head>
<title>Страница не найдена</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

</head>

<body height="100%">
<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="1">
<tr>
<td>123</td>
</tr>
</table>

</body>
</html>

Edited by Kenshi45
Link to comment
Share on other sites

  • 0
<!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" lang="ru" xml:lang="ru" dir="ltr">
<head>
<title>Страница не найдена</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
html, body {height:100%;}
</style>

</head>

<body>
<table width="100%" height="100%" cellspacing="0" cellpadding="0" border="1">
<tr>
<td>123</td>
</tr>
</table>

</body>
</html>

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy