gpt4 book ai didi

HTML/CSS : Custom ul list

转载 作者:行者123 更新时间:2023-11-28 16:06:07 25 4
gpt4 key购买 nike

我的列表设计如下图:

enter image description here

如您所见,文本有一个带装饰蓝点的左边距,加上文本向左对齐。所以我的问题是如何自定义 ul 列表,如设计、左边距和最后一个文本对齐-留下上面的其他文字。

P/S:这是我可以尝试做的。

enter image description here

ul{
font-size: 16px;
font-weight: 400;
color: #2e3192;
margin-left: 20px;
margin-top: 17px;
list-style: square inside url("BlueDot.png");
}
li{
margin-top: 17px;
}
<ul>
<li>Finance Leases</li>
<li>Operating Leases</li>
<li>Installment Sales</li>
<li>Cross-Border Leases &<br/> Leases Denominated in<br/> Local Currencies</li>
</ul>

最佳答案

给你

ul {
background: #469eb4;
width: 400px;
}

li {
list-style: none;
color: #2c3d95;
position: relative;
padding-left: 20px;
}

li:after {
content: "";
width: 5px;
height: 5px;
border-radius: 50%;
background: #2e3192;
position: absolute;
left: 0%;
top: 40%;
}
<ul>
<li>Finance Leases</li>
<li>Operating Leases</li>
<li>Installment Sales</li>
<li>Cross-Border Leases &<br/> Leases Denominated in<br/> Local Currencies</li>
</ul>

关于HTML/CSS : Custom ul list,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42825728/

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