Skip to content Skip to sidebar Skip to footer

Css Box Above Text Also Background Code Please

Ok so here is my code for my < style >. The box that should be outlining isn't working, its just going above. Also, I would like to know how I can make my background complet

Solution 1:

From looking at the code I would say you have a simple case of the floating divs. It's nothing a clearfix can't take care of.

I use the one found here that can be summed up like this.

.group:after {
  content: "";
  display: table;
  clear: both;
}

Add that to your .info-container should fix your issue.

Solution 2:

Add this to .inner-border class:

padding-bottom: 50px; 
background-color: grey;

And remove the background color at the start of

Post a Comment for "Css Box Above Text Also Background Code Please"