How do you change the color behind the font using html/css code?
For example, I have blue font and I want the color just behind the font to be color black. Is there a code to do this?
Public Comments
- Use the "background-color" attribute either in your stylesheet or inline in your HTML, if you only want the background to be black for a short section of text. Here is some example text <span style="background-color: #000000">with this text having a black background</span> and this text being back to the page default background.
Powered by Yahoo! Answers