gpt4 book ai didi

html - 如何将边框半径添加到 css 网格元素

转载 作者:太空宇宙 更新时间:2023-11-04 05:51:45 25 4
gpt4 key购买 nike

enter image description here https://codepen.io/siddagra/pen/vYBoJyM我想为五个紫色+灰色框的每一个添加边框半径,理想情况下不添加任何 html 样式,因为框本身内的 div 元素的排列可能会发生变化。请帮忙,我试过了:第一个 child 和第二个 child 选择器,但那没有用。

.ExpandedSetPiece:first-child {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

.ExpandedSetPiece:last-child {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

最佳答案

试试这个:

.ExpandedSetPiece div:first-child {
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}

.ExpandedSetPiece div:last-child {
border-bottom-left-radius: 5px;
border-bottom-right-radius: 5px;
}

“ child ”一词可能有点误导。如果您在 .ExpandedSetPiece 上使用 :first-child,则表示这些组中的第一个。

关于html - 如何将边框半径添加到 css 网格元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58199457/

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