Home > Enterprise >  I tried to set a background color but that gap is annoying and I want that margin but in not white c
I tried to set a background color but that gap is annoying and I want that margin but in not white c

Time:02-12

enter image description here

background-color: #434343; I want this color in the background

CodePudding user response:

Then you should set the background color of parent element of that picture to #434343.

You can select that element with devtools and see what it is. After that just set the background-color as usual.

CodePudding user response:

I really don't see your problem. you can just go to your CSS code and set the background colour on body.

body{
  background-color: #434343
}

If you want to set a different background colour of card, then go to your CSS code and set the background colour on card class or id

  • Related