How can I add more space using content pseudo class
I am using below code to add single space.
h3:before{content:" "}
I need to add more space by using content.
PS: No addition in html pls
What about using some padding-right instead of spaces?
h3 {
padding-right: 10px
}