Hi i’m trying to recreate this design but I don’t know how to apply the style to achieve this. I’m trying with the ul tag but without success.
This is the reference image.
.item-container{
width: 260px;
}
<ul class="item-container">
<li class="item">Te realizaremos algunas preguntas para validar tu identidad</li>
<li class="item">Luego te enviaremos un código de verificación y un enlace</li>
<li class="item">Accedé al enlace y seguí los pasos</li>
</ul>
>Solution :
I’m not sure what you mean by "I’m trying to recreate this design"
Because if you want an unordered list you can just do:
<ul>
<li>Hello</li>
<li>Hi</li>
<li>How are you</li>
</ul>
Though if you’re trying to make it so overflowing text gets sent back under the bullet, you can add this CSS:
ul {
width: 100px;
list-style-position: inside;
}
Then up to you to style it as you wish
