gpt4 book ai didi

CSS 溢出 :hidden inside circles

转载 作者:行者123 更新时间:2023-11-28 10:55:49 25 4
gpt4 key购买 nike

我试图隐藏圆形 div 的溢出。它的子 div 在容器区域之外时从 View 中隐藏(好),但仅在半径区域之外时仍然可见(坏)

.outer{
position:relative;
border-radius: 50%;
width: 200px;
height: 200px;
background:#dedede;
overflow: hidden;
}
.inner{
position: absolute;
top:150px;
left:150px;
width: 50px;
height: 50px;
background-color: red;
background:#98de45;
}​

总的来说我想在http://buildinternet.com/project/mosaic/1.0达到效果但是使用圆圈 - 有办法做到这一点吗?

fiddle : http://jsfiddle.net/a9Feu/

编辑:这在 Firefox 和 IE 10 中运行良好,但在 Chrome 或 Safari 中运行不正常

最佳答案

像这样?

.outer{
position:static;
border-radius: 50%;
width: 200px;
height: 200px;
background:#dedede;
overflow: hidden;
}
.inner{
position: static;
top:150px;
left:150px;
width: 50px;
height: 50px;
background-color: red;
background:#98de45;
}​

关于CSS 溢出 :hidden inside circles,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10693526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com