full width background color on a div

后端 未结 2 2077
有刺的猬
有刺的猬 2021-01-23 06:24

I\'m using a 1120px css responsive framework responsive or it can act as a fixed grid whenever I need it.

I have a div inside the 1120px container div on which I want

2条回答
  •  伪装坚强ぢ
    2021-01-23 07:02

    Here's a really ugly way to do this. and I'm posting this with an expectation of someone downvoting this... but it works.

    Here's a fiddle for it http://jsfiddle.net/5mn22/8/

    Add this to your CSS:

    .toggle_title, .toggle_content {
        position:relative;
        z-index:2;
    }
    
    .toggle:before {
        content:"";  
        width:4000px;
        position:absolute;
        height:100%;
        background-color:red;
        left:-50%;
        z-index:1
    }
    

    Basically, just adding a null content before the div with a width double the size of expected screen resolution and position it to the left 50% to make sure it stretches the entire distance.

    What do you think?

提交回复
热议问题