Applied visual design background color

background-color using rgba. I have applied this to the h4 element using the style attribute and the background color changed. I also applied this to the h4 class and got the same result, however I cannot proceed to the next challenge. This also happened with the strong tag before I skipped it. something is wrong.Screenshot_13

see screenshot

it is not possible to help you if you don’t provide your code and a link to the challenge

Yes, please, send code and we’ll help you out.

Am facing the same problem right now…
here is my code
β€˜β€™β€™β€™β€™β€™
h4 {
text-align: center;
padding: 10px;
background-color: rgba(45, 45, 45, 0.1)
β€˜β€™β€™β€™β€™β€™β€™.
}:
worried:

@Innocentcode

hey, all is good, just try to add a semi-colon at the end of the closing bracket.
your code should be like this

h4 {
text-align: center;
padding: 10px;
background-color: rgba(45, 45, 45, 0.1);

1 Like