当“left1_sub”类悬停时,我试图为“left2”类的 div 提供边框半径。
我已经搜索了很多解决方案,但似乎没有什么对我有用。
它的 html:http ://web318.login-11.hoststar.at/ben/kleinraum/wp/menuimg/index.html 和完整的 css:http ://web318.login-11.hoststar.at/ben /kleinraum/wp/menuimg/style.css
.left1_sub{
padding-top:2%;
padding-bottom:2%;
width: 100%;
float: left;
background-color: #cccccc
}
.left1_sub:hover ~ .left2 {border-radius: 10px;}
.left2{
float: left;
margin-right: 20px;
margin-top: 20px;
width: 500px;
height:600px;
background-color: #ccccff
}
只是向 css3 介绍自己,如果有失败,请见谅。
本