"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How Can I Add a Background Color Only to Text Using CSS?

How Can I Add a Background Color Only to Text Using CSS?

Posted on 2025-02-06
Browse:864

How Can I Add a Background Color Only to Text Using CSS?

How to Set a Background Color for Text Width Using CSS

In your quest to create a green background behind only your text and not the entire page width, you're facing a challenge. Here's how to navigate this situation while respecting the constraints you mentioned:

Solution: Envelop Your Text in an Inline Element

Since you cannot modify the HTML, wrap your text in an inline element, such as a .

<h1><span>The Last Will and Testament of Eric Jones</span></h1>

Now, you can apply the background color to the inline element:

h1 {
    text-align: center; 
}
h1 span { 
    background-color: green; 
}

The Rationale:

Inline elements shrink to fit their content, ensuring that the background color aligns perfectly with the text width. This technique allows you to create a background effect specifically for your text without impacting the surrounding elements.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3