We can also name it Mini articles
2025
CSS before trick
- If you need to add any whitespace before text use the below logic
h2 { text-decoration: underline; } h2.space::after { content: " "; white-space: pre; }
We can also name it Mini articles
h2 { text-decoration: underline; } h2.space::after { content: " "; white-space: pre; }