Jump to content
  • 0

Выделяется строка таблицы


bigturtle
 Share

Question

Здравствуйте. Уважаемые гуру скажите как можно организовать. Есть таблица состоящея из нескольких строк. Там 5 колонок. 2 колонка картинка. 3 колонка ссылка. Нужно сделать так что бы при наведении на строку картинка менялась на другую, весь текст и ссылка становились красными. Понимаю как сделать для одной картинки по средством css и с помощью :hover

____________________________________________________________

| | | | |

|картинка | текст | ссылка | текст |

|___________|______________|______________|_________________|

| | | | |

| | | | |

|___________|______________|______________|_________________|

| | | | |

| | | | |

|___________|______________|______________|_________________|

спасибо.

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

Ну и для таблицы так же.

HTML:

<table class="hoverme">
<tr>
<td>ляля</td>
<td>ляля</td>
<td>ляля</td>
<tr>
<tr>
<td>ляля</td>
<td>ляля</td>
<td>ляля</td>
<tr>
<tr>
<td>ляля</td>
<td>ляля</td>
<td>ляля</td>
<tr>
</table>

CSS:

table.hoverme td {
background-color:#FFF;
}

table.hoverme tr:hover td
{
background-color:#EFEFEF;
}

Примерно так должно работать

UPD: Searcher опередил меня :)

Link to comment
Share on other sites

  • 0

Как вариант(первые два предпочтительней конечно...):

<!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=windows-1251">
<title>Таблица в центре окна</title>
<style type="text/css">
table tr:hover {
background: #c60000;
}
</style>
</head>
<body>
<table align="center" width="300" border="0" cellspacing="0" cellpadding="0">
<tr>
<td bgcolor="white">картинка</td>
<td>текст</td>
<td>ссылка</td>
<td>текст</td>
</tr>
<tr>
<td bgcolor="white">Трус</td>
<td>Шурик</td>
<td>Трус</td>
<td>Шурик</td>
</tr>
</table>
</body>
</html>

Edited by stars
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