Answers for "html text background"

2

how to give color to text in html

HTML color to text
<body>
  <p style="color:#FF0000";>Red paragraph text</p>
</body>
Posted by: Guest on December-01-2020
0

how to add a background to text in html

.white_bg 
{
    background-color: #ffffff;
    padding: 3px; /*add this if you want a bit of space around the text*/
}

<span class="white_bg">Your text here</span>
Posted by: Guest on March-06-2021

Code answers related to "html text background"

Browse Popular Code Answers by Language