gpt4 book ai didi

html - CSS 中的圆 Angular 矩形

转载 作者:太空宇宙 更新时间:2023-11-03 19:39:35 26 4
gpt4 key购买 nike

我想生成圆 Angular 矩形 - 按照 CSS 中的 UI,

enter image description here

但是我在生成它时遇到了一些困难。这是我的代码片段

ul {
padding: 0;
list-style-type: none;
border: 1px solid #ccc;
border-radius: 10px;
}

li {
overflow: hidden;
}


li:last-child {
padding:7px;
}

li:not(:last-child) {
padding:7px;
border-bottom:1px solid #DDD;
}


.parent:nth-of-type(odd) {
background-color: rgb(40,40,40);
}

.parent:nth-of-type(even) {
background-color: black;
}


<div>
<ul>
<li class="parent">
<label class="labeltitle">NAME</label>
<label id="firstTF">100</label>
<label class="unitlabels">UNIT</label>
</li>
<li class="parent">
<label class="labeltitle">NAME</label>
<label id="secondTF">200</label>
<label class="unitlabels">UNIT</label>
</li>
</ul>
</div>

最佳答案

您将边框放在 ul 元素上,而不是 li 元素上。你也没有关闭 ul

li  {
border: 1px solid #ccc;
border-radius: 10px;

overflow: hidden;
}

这是一个 jsfiddle:

http://jsfiddle.net/tsyg465a/

关于html - CSS 中的圆 Angular 矩形,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26656145/

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