How to add centered text to the horizontal divider in HTML using CSS?
Originally Published Here ๐!
To add a centered text to the divider in HTML, we can use the CSS flexbox to achieve this.
TL;DR
HTML
<div>Hello world!</div>
CSS
.divider {
display: flex;
align-items: center;
text-align: center;
}
/* To show th...
melvingeorge-me.hashnode.dev3 min read