gpt4 book ai didi

css - CSS3 中的交集

转载 作者:行者123 更新时间:2023-11-28 09:29:24 36 4
gpt4 key购买 nike

是否可以使用 CSS 在这样的元素(div、span)中打一个“洞”。我知道我可以用透明图像做到这一点,但我只是想知道在 CSS 中是否可行。

body {padding:70px; background:url(http://ipadinsight.com/wp-content/uploads/2011/11/AirPlayMirroring_thumb.jpg)} 
div {background:red;border-radius:10px;width:400px;height:100px}​

在这里尝试 jsfiddle http://jsfiddle.net/xqEV2/

enter image description here

最佳答案

是的;你可以用纯CSS来做。 像这样:

body {padding:70px; background:url(http://ipadinsight.com/wp-content/uploads/2011/11/AirPlayMirroring_thumb.jpg);}

.parent {background:red;border-radius:10px;width:400px;height:100px;position:relative;}
.circle{

float:right;
position:absolute;
right:-50px;
top:0;
bottom:0;
width:50px;
overflow:hidden;
}
.circle:after{
content:"";
width:40px;
height:40px;
-moz-border-radius:100px;
display:block;
border:red 50px solid ;
margin-left:-45px;
margin-top:-20px;
}

检查这个实例

http://jsfiddle.net/xqEV2/4/

关于css - CSS3 中的交集,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8091183/

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