Jump to content
  • 0

Бекграунд у <tr> и <td>


Great Rash
 Share

Question

Для начала вот тестовая страница:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>

<style type="text/css">
table {
width: 100%;
border: 0;
border-collapse: collapse;
}

tr {
background: #eee;
}

td {
background: none;
}
</style>

<script type="text/javascript">

</script>
</head>

<body>

<table>
<tr>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</td>
</tr>
</table>

</body>
</html>

Кому не лень посмотрите ее сначала в Firefox, а потом в ИЕ7 или ниже. И посоветуйте как забороть этот баг?

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Конечно всех подробностей незнаю, ксожалению :) . Но меня всегда учили - на <tr> ничего не прописывать, все писать на <td>.

Почему в твоем случае на <td> нельзя повесить бг?

если убрать с <td> background:none; то работает...

Link to comment
Share on other sites

  • 0

Блин какое же ГЭ этот гребаный эксплорер!

Нашел лекарство! Кому интересно: нужно всего-лишь добавить position: relative; к стилю <tr>.

Вот рабочий код:

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>test</title>

<style type="text/css">
table {
width: 100%;
border: 0;
border-collapse: collapse;
}

tr {
position: relative; /* капец!!! */
background: #eee;
}

td {
background: none;
}
</style>

<script type="text/javascript">

</script>
</head>

<body>

<table>
<tr>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</td>
<td>
text text text text text text text
</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