Jump to content
  • 0

псевдокласс :hover


volkoff
 Share

Question

День добрый !

Вопрос такой: Можно ли с помощью :hover , заданного для одного элемента (например DIV-а), задать изменение стиля другого элемента ?

К примеру: Наводишь курсор на Div #1, а фон меняется у Div #2, или (или координаты картинки какой-нибудь меняются, ну в общем что угодно, только с другим элементом.

Спасибо

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Для форм есть label

Если они идут друг за другом можно через "+"

Если у них общий родитель и один из первый или последний элемент - :first-child и :last-child

Если один вложен в другой - div#1:hover>div#2 {...}

Прочитайте про селекторы CSS

Edited by alexandr_v-vich
Link to comment
Share on other sites

  • 0

Ну вот к примеру 2 дива

<div id="qwe1">Первый</div>

<div id="qwe2">Второй</div>

<style>

#qwe1 {

width:100px;

height:100px;

border:#000 solid 2px;

background-color:#999}

#qwe2 {

width:100px;

height:100px;

border:#000 solid 2px;

background-color:#CCC}

</style>

Как сделать так чтоб при наведении курсора на один, фон менялся только у другого ?

Edited by volkoff
Link to comment
Share on other sites

  • 0

Ну вот к примеру 2 дива

<div id="qwe1">Первый</div>

<div id="qwe2">Второй</div>

<style>

#qwe1 {

width:100px;

height:100px;

border:#000 solid 2px;

background-color:#999}

#qwe2 {

width:100px;

height:100px;

border:#000 solid 2px;

background-color:#CCC}

</style>

Как сделать так чтоб при наведении курсора на один, фон менялся только у другого ?

#qwe1:hover + #qwe2 {

background-color:#aaa;

}

а сорь не посмотрел, ...теги то не вложенные)

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