-2

The text became invisible due to the background image, so I was wondering if there was a way to provide a background colour so that the text can be seen more clear.

I have attached a screenshot of the problem I am facing. Look at the bottom right to see my issue.

Would really appreciate your help.

image to show what i mean

Anonymous
  • 135
  • 9

1 Answers1

0

In css you can set a background-color attribute:

p {
  background-color: #F00;
  padding: 4px;
}
<p>Sample Text</p>
Mike Shaw
  • 21
  • 4