3
I’m trying to solve a CSS in my development:
HTML:
I created a Responsive DIV with 1 COLUMN (GRID of 6) for a specific content section. I already put text inside this.
CSS:
I created a class to style this DIV
#saldos{
background-color:FFFFFF;
height:200px;
display:block;
}
The result is none in the browser, only the text appears, but no background. I think that some PAI class is preventing the result I want to SON.
How do I find out what’s going on? I’ve been to inspect element
to see what might be influencing this CSS.
You must have
#
before the colour code, test withbackground-color: #FFFFFF;
and give him awidth
also, if it has no content.– Sergio
Thanks a lot Sergio :) It’s solved.
– Inês Calaça
Mark @Sergio’s response with the green check please
– Leandro RR