Make width from child DIV larger than parent div with CSS Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceIs there are way to make a child DIV's width wider than the parent DIV using CSS?CSS - Make divs align horizontallyMake a div fill the height of the remaining screen spaceHow to make div not larger than its contents?How to align a <div> to the middle (horizontally/width) of the pageIs there a CSS parent selector?Maintain the aspect ratio of a div with CSSHow to make a div 100% height of the browser window?Is there are way to make a child DIV's width wider than the parent DIV using CSS?How to make Twitter Bootstrap menu dropdown on hover rather than clickParent div larger than child despite 100% width and height

Losing the Initialization Vector in Cipher Block Chaining

Why does tar appear to skip file contents when output file is /dev/null?

How to market an anarchic city as a tourism spot to people living in civilized areas?

Interesting examples of non-locally compact topological groups

Mortgage adviser recommends a longer term than necessary combined with overpayments

Can smartphones with the same camera sensor have different image quality?

When is phishing education going too far?

3 doors, three guards, one stone

Working around an AWS network ACL rule limit

What items from the Roman-age tech-level could be used to deter all creatures from entering a small area?

What to do with post with dry rot?

What kind of display is this?

Is above average number of years spent on PhD considered a red flag in future academia or industry positions?

Am I ethically obligated to go into work on an off day if the reason is sudden?

Estimated State payment too big --> money back; + 2018 Tax Reform

Antler Helmet: Can it work?

What LEGO pieces have "real-world" functionality?

What would be Julian Assange's expected punishment, on the current English criminal law?

Single author papers against my advisor's will?

The following signatures were invalid: EXPKEYSIG 1397BC53640DB551

How are presidential pardons supposed to be used?

Can the prologue be the backstory of your main character?

How should I respond to a player wanting to catch a sword between their hands?

Keep going mode for require-package



Make width from child DIV larger than parent div with CSS



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
The Ask Question Wizard is Live!
Data science time! April 2019 and salary with experienceIs there are way to make a child DIV's width wider than the parent DIV using CSS?CSS - Make divs align horizontallyMake a div fill the height of the remaining screen spaceHow to make div not larger than its contents?How to align a <div> to the middle (horizontally/width) of the pageIs there a CSS parent selector?Maintain the aspect ratio of a div with CSSHow to make a div 100% height of the browser window?Is there are way to make a child DIV's width wider than the parent DIV using CSS?How to make Twitter Bootstrap menu dropdown on hover rather than clickParent div larger than child despite 100% width and height



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















is it possible to make the 'width' from a child DIV larger than the 'width' from the parent DIV... (with css only)



Please see the following example for more details:




http://jsfiddle.net/6UFs4/




 <div id="main">
<div id="sidebar">DIV1
<div id="sidebar_2">DIV1 Sub</div>
</div>
<div id="page-wrap">DIV2</div>
</div>

#main

display: block;
width: 100%;

#sidebar

background-color: Aqua;
float: left;
width: 80%;


#sidebar_2

background-color: Lime;


#page-wrap

background-color: Gray;



The size from DIV1 Sub should be 100% from browser window and not limited from parent DIV. I tried using overflow: visible but it´s not working...



Any ideas? Thanks in advance.










share|improve this question
























  • possible duplicate of Is there are way to make a child DIV's width wider than the parent DIV using CSS?

    – Ciro Santilli 新疆改造中心996ICU六四事件
    Jun 28 '14 at 9:09

















1















is it possible to make the 'width' from a child DIV larger than the 'width' from the parent DIV... (with css only)



Please see the following example for more details:




http://jsfiddle.net/6UFs4/




 <div id="main">
<div id="sidebar">DIV1
<div id="sidebar_2">DIV1 Sub</div>
</div>
<div id="page-wrap">DIV2</div>
</div>

#main

display: block;
width: 100%;

#sidebar

background-color: Aqua;
float: left;
width: 80%;


#sidebar_2

background-color: Lime;


#page-wrap

background-color: Gray;



The size from DIV1 Sub should be 100% from browser window and not limited from parent DIV. I tried using overflow: visible but it´s not working...



Any ideas? Thanks in advance.










share|improve this question
























  • possible duplicate of Is there are way to make a child DIV's width wider than the parent DIV using CSS?

    – Ciro Santilli 新疆改造中心996ICU六四事件
    Jun 28 '14 at 9:09













1












1








1


1






is it possible to make the 'width' from a child DIV larger than the 'width' from the parent DIV... (with css only)



Please see the following example for more details:




http://jsfiddle.net/6UFs4/




 <div id="main">
<div id="sidebar">DIV1
<div id="sidebar_2">DIV1 Sub</div>
</div>
<div id="page-wrap">DIV2</div>
</div>

#main

display: block;
width: 100%;

#sidebar

background-color: Aqua;
float: left;
width: 80%;


#sidebar_2

background-color: Lime;


#page-wrap

background-color: Gray;



The size from DIV1 Sub should be 100% from browser window and not limited from parent DIV. I tried using overflow: visible but it´s not working...



Any ideas? Thanks in advance.










share|improve this question
















is it possible to make the 'width' from a child DIV larger than the 'width' from the parent DIV... (with css only)



Please see the following example for more details:




http://jsfiddle.net/6UFs4/




 <div id="main">
<div id="sidebar">DIV1
<div id="sidebar_2">DIV1 Sub</div>
</div>
<div id="page-wrap">DIV2</div>
</div>

#main

display: block;
width: 100%;

#sidebar

background-color: Aqua;
float: left;
width: 80%;


#sidebar_2

background-color: Lime;


#page-wrap

background-color: Gray;



The size from DIV1 Sub should be 100% from browser window and not limited from parent DIV. I tried using overflow: visible but it´s not working...



Any ideas? Thanks in advance.







css html width






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 25 '13 at 8:55









James Donnelly

101k22158174




101k22158174










asked Mar 25 '13 at 8:46









SimonSimon

1701826




1701826












  • possible duplicate of Is there are way to make a child DIV's width wider than the parent DIV using CSS?

    – Ciro Santilli 新疆改造中心996ICU六四事件
    Jun 28 '14 at 9:09

















  • possible duplicate of Is there are way to make a child DIV's width wider than the parent DIV using CSS?

    – Ciro Santilli 新疆改造中心996ICU六四事件
    Jun 28 '14 at 9:09
















possible duplicate of Is there are way to make a child DIV's width wider than the parent DIV using CSS?

– Ciro Santilli 新疆改造中心996ICU六四事件
Jun 28 '14 at 9:09





possible duplicate of Is there are way to make a child DIV's width wider than the parent DIV using CSS?

– Ciro Santilli 新疆改造中心996ICU六四事件
Jun 28 '14 at 9:09












3 Answers
3






active

oldest

votes


















0














You can use position:absolute and width:100%; to meet your requirements but you have to be careful about position of your element(x and y axis with respect to page) inorder to show your image at desired location



See the example:
http://jsfiddle.net/6UFs4/2/






share|improve this answer






























    0














    Yes you can by changing its positioning.



    jsFiddle



    enter image description here



    #sidebar_2 

    background-color: Lime;
    position:absolute;
    left:0;
    right:0;






    share|improve this answer























    • I don´t know really why but in my code this is not working... Just on JSFiddle I can see that it is working but not in my code... Is there a problem with IE8?

      – Simon
      Mar 25 '13 at 10:09











    • I just tested it in IE8 and it works fine. It may have issues if you have a position rule on any of its ancestors.

      – Daniel Imms
      Mar 25 '13 at 10:52


















    0














    Just add this css to your child div:



    #sidebar_2 
    position:absolute;
    left:0;
    right:0;



    Demo: http://jsfiddle.net/6UFs4/4/






    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f15610728%2fmake-width-from-child-div-larger-than-parent-div-with-css%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      You can use position:absolute and width:100%; to meet your requirements but you have to be careful about position of your element(x and y axis with respect to page) inorder to show your image at desired location



      See the example:
      http://jsfiddle.net/6UFs4/2/






      share|improve this answer



























        0














        You can use position:absolute and width:100%; to meet your requirements but you have to be careful about position of your element(x and y axis with respect to page) inorder to show your image at desired location



        See the example:
        http://jsfiddle.net/6UFs4/2/






        share|improve this answer

























          0












          0








          0







          You can use position:absolute and width:100%; to meet your requirements but you have to be careful about position of your element(x and y axis with respect to page) inorder to show your image at desired location



          See the example:
          http://jsfiddle.net/6UFs4/2/






          share|improve this answer













          You can use position:absolute and width:100%; to meet your requirements but you have to be careful about position of your element(x and y axis with respect to page) inorder to show your image at desired location



          See the example:
          http://jsfiddle.net/6UFs4/2/







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 25 '13 at 8:53









          I_Debug_EverythingI_Debug_Everything

          2,62122746




          2,62122746























              0














              Yes you can by changing its positioning.



              jsFiddle



              enter image description here



              #sidebar_2 

              background-color: Lime;
              position:absolute;
              left:0;
              right:0;






              share|improve this answer























              • I don´t know really why but in my code this is not working... Just on JSFiddle I can see that it is working but not in my code... Is there a problem with IE8?

                – Simon
                Mar 25 '13 at 10:09











              • I just tested it in IE8 and it works fine. It may have issues if you have a position rule on any of its ancestors.

                – Daniel Imms
                Mar 25 '13 at 10:52















              0














              Yes you can by changing its positioning.



              jsFiddle



              enter image description here



              #sidebar_2 

              background-color: Lime;
              position:absolute;
              left:0;
              right:0;






              share|improve this answer























              • I don´t know really why but in my code this is not working... Just on JSFiddle I can see that it is working but not in my code... Is there a problem with IE8?

                – Simon
                Mar 25 '13 at 10:09











              • I just tested it in IE8 and it works fine. It may have issues if you have a position rule on any of its ancestors.

                – Daniel Imms
                Mar 25 '13 at 10:52













              0












              0








              0







              Yes you can by changing its positioning.



              jsFiddle



              enter image description here



              #sidebar_2 

              background-color: Lime;
              position:absolute;
              left:0;
              right:0;






              share|improve this answer













              Yes you can by changing its positioning.



              jsFiddle



              enter image description here



              #sidebar_2 

              background-color: Lime;
              position:absolute;
              left:0;
              right:0;







              share|improve this answer












              share|improve this answer



              share|improve this answer










              answered Mar 25 '13 at 8:54









              Daniel ImmsDaniel Imms

              34.7k7103140




              34.7k7103140












              • I don´t know really why but in my code this is not working... Just on JSFiddle I can see that it is working but not in my code... Is there a problem with IE8?

                – Simon
                Mar 25 '13 at 10:09











              • I just tested it in IE8 and it works fine. It may have issues if you have a position rule on any of its ancestors.

                – Daniel Imms
                Mar 25 '13 at 10:52

















              • I don´t know really why but in my code this is not working... Just on JSFiddle I can see that it is working but not in my code... Is there a problem with IE8?

                – Simon
                Mar 25 '13 at 10:09











              • I just tested it in IE8 and it works fine. It may have issues if you have a position rule on any of its ancestors.

                – Daniel Imms
                Mar 25 '13 at 10:52
















              I don´t know really why but in my code this is not working... Just on JSFiddle I can see that it is working but not in my code... Is there a problem with IE8?

              – Simon
              Mar 25 '13 at 10:09





              I don´t know really why but in my code this is not working... Just on JSFiddle I can see that it is working but not in my code... Is there a problem with IE8?

              – Simon
              Mar 25 '13 at 10:09













              I just tested it in IE8 and it works fine. It may have issues if you have a position rule on any of its ancestors.

              – Daniel Imms
              Mar 25 '13 at 10:52





              I just tested it in IE8 and it works fine. It may have issues if you have a position rule on any of its ancestors.

              – Daniel Imms
              Mar 25 '13 at 10:52











              0














              Just add this css to your child div:



              #sidebar_2 
              position:absolute;
              left:0;
              right:0;



              Demo: http://jsfiddle.net/6UFs4/4/






              share|improve this answer



























                0














                Just add this css to your child div:



                #sidebar_2 
                position:absolute;
                left:0;
                right:0;



                Demo: http://jsfiddle.net/6UFs4/4/






                share|improve this answer

























                  0












                  0








                  0







                  Just add this css to your child div:



                  #sidebar_2 
                  position:absolute;
                  left:0;
                  right:0;



                  Demo: http://jsfiddle.net/6UFs4/4/






                  share|improve this answer













                  Just add this css to your child div:



                  #sidebar_2 
                  position:absolute;
                  left:0;
                  right:0;



                  Demo: http://jsfiddle.net/6UFs4/4/







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 25 '13 at 8:54









                  EliEli

                  13.9k55076




                  13.9k55076



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f15610728%2fmake-width-from-child-div-larger-than-parent-div-with-css%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      AWS Lex not identifying response if by a variable The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) The Ask Question Wizard is Live! Data science time! April 2019 and salary with experienceEnforcing custom enumeration in AWS LEX for slot valuesHow to give response based on user response in Amazon Lex?Intercepting AWS Lambda Response to a AWS Lex QueryLex chat bot error: Reached second execution of fulfillment lambda on the same utteranceamazon lex showing invalid responseLambda response send back to Lex slot?Response card in Amazon lexAmazon Lex - Lambda response return HTML to botHow can I solve 424 (Failed Dependency) (python) obtained from Amazon lex?

                      Алба-Юлія

                      Захаров Федір Захарович