📌  相关文章
📜  将鼠标悬停在 div 上时如何更改元素的颜色 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:38.878000             🧑  作者: Mango

代码示例1
/*
to change the color of an element inside a div, 
specify what element you want to change 
when hovering over the div like this:
*/
.div:hover .element{ 
    color: red;
}