Line through heading that doesn't require extra span
by BramVanroy
HTML
<h1>Welcome to our world</h1>
CSS
h1 {
text-align: center;
}
h1:before, h1:after {
content:".";
display: inline;
}
by BramVanroy
<h1>Welcome to our world</h1>
h1 {
text-align: center;
}
h1:before, h1:after {
content:".";
display: inline;
}