Img过渡比例更改容器

时间:2017-05-16 17:29:43

标签: css image hover transform scale

我有一个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;
}

哪个适用于其他页面但不在此页面上。

任何帮助表示赞赏!

1 个答案:

答案 0 :(得分:0)

您想要隐藏父元素上的溢出。添加.results_box_custom p { overflow: hidden; }