Question

I am trying to create a div that is inside a fluid grid layout that has a background color that stretches across the entire width of the page but still holds content, like the dark blue and light blue sections of https://unroll.me/

Was it helpful?

Solution

First of all you will need to create a div for the blue background. Then you will need to create a div inside of the blue background div to hold your content.

<div id="blueBackground">

    <div id="contentDiv">

      <!-- your content here -->

    </div>

</div>

Next you will style the div's with CSS

#blueBackground {
    background:#hexcolor;
    width:100%;
    padding: 40px 15px; /* first number sets vertical padding - second sets horizontal */
}

#contentDiv {
   width: 100%;
}

OTHER TIPS

#mydiv {
    width: 100%;
    background: blue;
}
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top