gpt4 book ai didi

html - 如何仅使用 html 和 css(不使用 Bootstrap )设计一个简单的 ListView (如 Android)

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

我想设计一个 Listview,就像 Android 一样,只使用 Html 和 css,而不使用 bootstrap。我试过使用 Ul 和 li,但在这唯一的子弹来了。

<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

我想要像下图这样的 Listview。 enter image description here谁能建议我如何实现这一目标。

最佳答案

ul{
width:200px;
background:gray;
color:white;
list-style-type:none;
margin:0;
padding:0;
}
li{
border:2px solid black;
padding:5px;
}
li:last-child{
border-bottom:none;
}
li:hover{
background:red;
color:black;
}
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

关于html - 如何仅使用 html 和 css(不使用 Bootstrap )设计一个简单的 ListView (如 Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47732566/

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