<div id="parent">
<div id="child">Child</div>
</div>
#parent {
margin-left:auto;
margin-right:auto;
height:200px;
width:50%;
background:#eee;
overflow:none;
}
#child {
width:10%;
height:10%;
margin:auto;
background:red;
-webkit-transform: translate(0px, 300px);
}
我有以下设置,我希望父div“剪辑”,以便隐藏它之外的任何内容。有点像溢出:没有,但这也适用于翻译。有没有办法实现这个目标? 谢谢, 克里斯
答案 0 :(得分:3)
我不记得使用overflow:none,试试 溢出:隐藏