Jump to content
  • 0

стили внутри других стилей ?


FreshMan
 Share

Question

подскажите пожалуйста, как сделать так чтобы при наведении курсора на b-2 или b-3 или b-4 или b-5 цвет заднего фона b-1 становился былым ?

https://codepen.io/FreshManGood/pen/xxbrBPZ?editors=1100

логичнее было бы сделать вот так

.container-blocks .block-2:hover,
.container-blocks .block-3:hover,
.container-blocks .block-4:hover,
.container-blocks .block-5:hover{
  
  background-color:green;
  
  .container-blocks .block-1{
    background-color:red;
  }
  
}

но так нельзя
можна ли решить данную задачу на чистом CSS ?

Link to comment
Share on other sites

5 answers to this question

Recommended Posts

  • 0

прошу прощения, я не верно изложил мысль

вот код https://codepen.io/FreshManGood/pen/xxbrBPZ?editors=1100
нужно чтобы когда я навожу курсор на любой блок , кроме первого, в первом блоке задний фон менялся с зеленого на белый, а в наводимом блоке он становился зеленым.

Link to comment
Share on other sites

  • 0
.container:hover .container_block-1{
  background-color:transparent;
}

.container .container_block-1:hover,
.container .container_block-2:hover,
.container .container_block-3:hover,
.container .container_block-4:hover,
.container .container_block-5:hover{
  
  background-color:green;
    
}

заменить ваши ховеры
еще можно сделать анимацию с задержкой для background-color для красоты

Link to comment
Share on other sites

  • 0
On 12/30/2019 at 8:50 AM, Switch74 said:

.container:hover .container_block-1{
  background-color:transparent;
}

.container .container_block-1:hover,
.container .container_block-2:hover,
.container .container_block-3:hover,
.container .container_block-4:hover,
.container .container_block-5:hover{
  
  background-color:green;
    
}

заменить ваши ховеры
еще можно сделать анимацию с задержкой для background-color для красоты

это не так работает как я описывал выше

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