我有一个img标记,我想在悬停在父元素上时放大,而不会更改容器。我有代码:
.results_box_custom:hover p img{
-moz-transform: scale(1.2);
-webkit-transform: scale(1.2);
transform: scale(1.2);
-moz-transition: all 0.3s;
-webkit-transition: all 0.3s;
transition: all 0.3s ease-in-out;
}
哪个适用于其他页面但不在此页面上。
任何帮助表示赞赏!
答案 0 :(得分:0)
您想要隐藏父元素上的溢出。添加.results_box_custom p { overflow: hidden; }