Can anyone help me with this issue? I need all the list items to align on the left side like in the example image.
Here is an example of what I am looking for
Below is my code:
.feature-stack {
margin: 100px 0 0 0;
border: solid 3px;
}
.features ul.features-stack {
margin-top: 50px;
}
.features ul.features-stack ul {}
.features ul.features-stack li:last-child {
padding-bottom: 0px;
border-bottom: none;
}
.feature-content ul li {
list-style-type: none;
}
<ul class="features-stack">
<li class="feature-item">
<div class="feature-content">
<h5>Polyethene</h5>
<li>Test Test</li>
<li>Test Test</li>
<li>Test Test</li>
<li>Test Test</li>
</div>
</li>
<li class="feature-item">
<div class="feature-content">
<h5>Other virgin plastic</h5>
<li>Test Test</li>
<li>Test Test</li>
<li>Test Test</li>
<li>Test Test</li>
</div>
</li>
<li class="feature-item">
<div class="feature-content">
<h5>Polypropylene</h5>
<li>Test Test</li>
<li>Test Test</li>
<li>Test Test</li>
<li>Test Test</li>
</div>
</li>
</ul>
I want all list items to be aligned and remove the bullet points. If more information is needed, let me know.
Thank you!