gpt4 book ai didi

html - 在没有嵌套 div 的情况下在 css 中的 border-radius 内四舍五入

转载 作者:行者123 更新时间:2023-11-28 04:20:42 25 4
gpt4 key购买 nike

我想为没有嵌套 div 的元素设置圆 Angular 内边框 border-radius ,(不是外 border-radius)。

我的想法是这样的:

enter image description here

html源码在 jsfiddle

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<style>
#s{
width:200px;
height: 200px;
border:8px solid green ;
border-radius:8px;
background-color: red;
margin:0 auto;
}
</style>
</head>
<body>
<div id="s" >

</div>
</body>
</html>

这在 css3 中可行吗?

最佳答案

你可以,但我想它不会可用,因为有 z-index: -1; 一旦有另一个背景,它就会在它后面...

#s {
position: relative;
width:200px;
height: 200px;
border-radius:8px;
background-color: red;
margin:0 auto;
}
#s:before {
content:'';
z-index: -1;
background-color: green;
position: absolute;
top: -8px;
left: -8px;
width: 216px;
height: 216px;
}

Demo

关于html - 在没有嵌套 div 的情况下在 css 中的 border-radius 内四舍五入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21849772/

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