I want to align the second-row text with the first-line text.
Here's the URL of my website: https://stgbusiness.wpengine.com/
and here's the code:
<img src="https://stgbusiness.wpengine.com/wp-content/uploads/2021/10/modules-icon.png" /><span class="m-icons">Contracts, Business Valuation and Pricing Negotiations</span>
is there a way I can make this text-align?
I think ou can use flexbox and do it like that :
.note {
display: flex;
align-items: center;
}
<div class="note">
<img src="https://stgbusiness.wpengine.com/wp-content/uploads/2021/10/modules-icon.png" />
<span>
Learn from the best in the business. Our Broker advisory board has a combined 150 years worth of business brokering experience
</span>
</div>