Search code examples
htmlcsspseudo-class

add more white space in content pseudo class


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


Solution

  • What about using some padding-right instead of spaces?

    h3 {
        padding-right: 10px
    }