문제

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/

도움이 되었습니까?

해결책

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%;
}

다른 팁

#mydiv {
    width: 100%;
    background: blue;
}
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top