Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经创建了一个视图,我正在尝试用圆角制作它,所以我正在使用border-radius.
border-radius
唯一的问题是我可以看到我的一个div元素的角落,我似乎无法摆脱它们。我尝试使用谷歌开发人员工具缩小显示边界的元素,但我无法确定它。
div
这是示例。
这是因为父级没有边界半径,所以你可以添加相同border-radius的.center_content 类
.center_content
.center_content { width: 90%; margin: auto; position: relative; background: #FFFFFF; border-radius: 15px; }
或者您也可以从此类中删除背景以实现相同的目的。
JS 小提琴示例