Jump to content
  • 0

проблемка с вложенной таблицей


CAs...
 Share

Question

есть такой кодик:

<html>
<head>
<title>Пипец!!!</title>
</head>

<body leftmargin="0" topmargin="0" bottommargin="0" rightmargin="0">
<table width="100%" height="100%" cellspacing="0" cellpadding="0">
<tr align="center" height="100%">
<td bgcolor="#808000" valign="middle">
<table width="90%" height="90%" cellspacing="0" cellpadding="0">
<tr>
<td width="66%" bgcolor="#00FFFF"></td>
</tr>
</table>
</td>
</tr>
</table>
</body>

</html>

проблема в том что таблице задано положение valign="middle" в ОПЕРЕ все гуд, а в ИЕ нет, какбудто задали valign="top", не наю что в других браузерах еще не проверял

подскажите пожалуйста как можно это исправить?

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

1. Используйте доктайп, без доктайп браузер в quirk режиме работает Doctype

2. Некоторые атрибуты уже считаются устаревшими Deprecated тэги

3. Для ячеек таблицы есть css атрибут vertical-align

Edited by Kiddo
Link to comment
Share on other sites

  • 0

Вот такой код у меня работает в IE и FF:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">

<html>
<head>
<title>Test</title>
<style type="text/css">
body,
html
{
background-color:#808000;
height:100%;

margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}

table#wrapper
{
width:100%;
height:100%;

background-color:#808000;
border-collapse:collapse;

}

table#wrapper td.wrapperTd
{
width:100%;
height:100%;
margin:0px 0px 0px 0px;
padding:0px 0px 0px 0px;
}

div#content
{
background-color:#00FFFF;
width:90%;
height:90%;
margin:auto auto auto auto;
}
</style>
</head>
<body>
<table id="wrapper">
<tr>
<td class="wrapperTd">
<div id="content"> </div>
</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