Sticky footer in scroll-y-container depending on height of content












1














We have a container with overflow-y:scroll that must have a footer that is sticky (bottom 0) unless the content inside the scrolling container + the height (which is dynamic) of the footer are bigger than the containers height.



HTML:



<div class="wrapper">
<div class="scroll">
<div class="content">
Lorem ipsum dolor sit amet
</div>
<div class="footer">
This must stick to the bottom until .content is too long, then go below it
</div>
</div>
</div>


.content and .footer can have more or less content.



If possible, we do not want to use JS for this.



I created a fiddle here with several states: http://jsfiddle.net/bqvtf1zo/1/



Removing position: absolute on .footer solves it for case "little content" (see fiddle), but breaks the other 2 cases.










share|improve this question



























    1














    We have a container with overflow-y:scroll that must have a footer that is sticky (bottom 0) unless the content inside the scrolling container + the height (which is dynamic) of the footer are bigger than the containers height.



    HTML:



    <div class="wrapper">
    <div class="scroll">
    <div class="content">
    Lorem ipsum dolor sit amet
    </div>
    <div class="footer">
    This must stick to the bottom until .content is too long, then go below it
    </div>
    </div>
    </div>


    .content and .footer can have more or less content.



    If possible, we do not want to use JS for this.



    I created a fiddle here with several states: http://jsfiddle.net/bqvtf1zo/1/



    Removing position: absolute on .footer solves it for case "little content" (see fiddle), but breaks the other 2 cases.










    share|improve this question

























      1












      1








      1







      We have a container with overflow-y:scroll that must have a footer that is sticky (bottom 0) unless the content inside the scrolling container + the height (which is dynamic) of the footer are bigger than the containers height.



      HTML:



      <div class="wrapper">
      <div class="scroll">
      <div class="content">
      Lorem ipsum dolor sit amet
      </div>
      <div class="footer">
      This must stick to the bottom until .content is too long, then go below it
      </div>
      </div>
      </div>


      .content and .footer can have more or less content.



      If possible, we do not want to use JS for this.



      I created a fiddle here with several states: http://jsfiddle.net/bqvtf1zo/1/



      Removing position: absolute on .footer solves it for case "little content" (see fiddle), but breaks the other 2 cases.










      share|improve this question













      We have a container with overflow-y:scroll that must have a footer that is sticky (bottom 0) unless the content inside the scrolling container + the height (which is dynamic) of the footer are bigger than the containers height.



      HTML:



      <div class="wrapper">
      <div class="scroll">
      <div class="content">
      Lorem ipsum dolor sit amet
      </div>
      <div class="footer">
      This must stick to the bottom until .content is too long, then go below it
      </div>
      </div>
      </div>


      .content and .footer can have more or less content.



      If possible, we do not want to use JS for this.



      I created a fiddle here with several states: http://jsfiddle.net/bqvtf1zo/1/



      Removing position: absolute on .footer solves it for case "little content" (see fiddle), but breaks the other 2 cases.







      html5 css3 sticky sticky-footer






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 at 18:35









      Raphael Jeger

      1,67173362




      1,67173362
























          1 Answer
          1






          active

          oldest

          votes


















          1














          You need to create a flex container. (Though there are other ways to hande this problem as well: https://css-tricks.com/couple-takes-sticky-footer/)



          For the container, set the display to flex and flex-direction to column and give the scrollable content a flex value of 1. Remove positioning from footer, and there you have it.



          This will cause the content to stretch to fill the height of the container if any is available, and it will cause the footer to be stuck to the bottom of the content.



          For implementation: Be sure to follow up on all the cross-browser issues with flexbox, such as prefixes and bugs. https://github.com/philipwalton/flexbugs






          .wrapper{
          position: relative;
          height: 205px;
          width: 200px;
          }
          .scroll{
          border: 1px solid red;
          overflow-y: scroll;
          height: 100%;
          width: 100%;
          display:flex;
          flex-direction: column;
          }
          .content{
          background-color: #ccc;
          flex:1;

          }
          .footer{
          background-color: #efefef;

          }

          <h1>
          little content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          Lorem ipsum dolor sit amet
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>


          <h1>
          large content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>

          <h1>
          large content with large footer
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go further down<br>
          Some additional content
          </div>
          </div>
          </div>








          share|improve this answer





















          • this looks promising. Let me try with my real code. Thanks so much so far!
            – Raphael Jeger
            Nov 20 at 20:44










          • If you like it, please consider a vote up and accept of my answer
            – wlh
            Nov 20 at 21:51











          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%2f53399404%2fsticky-footer-in-scroll-y-container-depending-on-height-of-content%23new-answer', 'question_page');
          }
          );

          Post as a guest















          Required, but never shown

























          1 Answer
          1






          active

          oldest

          votes








          1 Answer
          1






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes









          1














          You need to create a flex container. (Though there are other ways to hande this problem as well: https://css-tricks.com/couple-takes-sticky-footer/)



          For the container, set the display to flex and flex-direction to column and give the scrollable content a flex value of 1. Remove positioning from footer, and there you have it.



          This will cause the content to stretch to fill the height of the container if any is available, and it will cause the footer to be stuck to the bottom of the content.



          For implementation: Be sure to follow up on all the cross-browser issues with flexbox, such as prefixes and bugs. https://github.com/philipwalton/flexbugs






          .wrapper{
          position: relative;
          height: 205px;
          width: 200px;
          }
          .scroll{
          border: 1px solid red;
          overflow-y: scroll;
          height: 100%;
          width: 100%;
          display:flex;
          flex-direction: column;
          }
          .content{
          background-color: #ccc;
          flex:1;

          }
          .footer{
          background-color: #efefef;

          }

          <h1>
          little content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          Lorem ipsum dolor sit amet
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>


          <h1>
          large content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>

          <h1>
          large content with large footer
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go further down<br>
          Some additional content
          </div>
          </div>
          </div>








          share|improve this answer





















          • this looks promising. Let me try with my real code. Thanks so much so far!
            – Raphael Jeger
            Nov 20 at 20:44










          • If you like it, please consider a vote up and accept of my answer
            – wlh
            Nov 20 at 21:51
















          1














          You need to create a flex container. (Though there are other ways to hande this problem as well: https://css-tricks.com/couple-takes-sticky-footer/)



          For the container, set the display to flex and flex-direction to column and give the scrollable content a flex value of 1. Remove positioning from footer, and there you have it.



          This will cause the content to stretch to fill the height of the container if any is available, and it will cause the footer to be stuck to the bottom of the content.



          For implementation: Be sure to follow up on all the cross-browser issues with flexbox, such as prefixes and bugs. https://github.com/philipwalton/flexbugs






          .wrapper{
          position: relative;
          height: 205px;
          width: 200px;
          }
          .scroll{
          border: 1px solid red;
          overflow-y: scroll;
          height: 100%;
          width: 100%;
          display:flex;
          flex-direction: column;
          }
          .content{
          background-color: #ccc;
          flex:1;

          }
          .footer{
          background-color: #efefef;

          }

          <h1>
          little content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          Lorem ipsum dolor sit amet
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>


          <h1>
          large content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>

          <h1>
          large content with large footer
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go further down<br>
          Some additional content
          </div>
          </div>
          </div>








          share|improve this answer





















          • this looks promising. Let me try with my real code. Thanks so much so far!
            – Raphael Jeger
            Nov 20 at 20:44










          • If you like it, please consider a vote up and accept of my answer
            – wlh
            Nov 20 at 21:51














          1












          1








          1






          You need to create a flex container. (Though there are other ways to hande this problem as well: https://css-tricks.com/couple-takes-sticky-footer/)



          For the container, set the display to flex and flex-direction to column and give the scrollable content a flex value of 1. Remove positioning from footer, and there you have it.



          This will cause the content to stretch to fill the height of the container if any is available, and it will cause the footer to be stuck to the bottom of the content.



          For implementation: Be sure to follow up on all the cross-browser issues with flexbox, such as prefixes and bugs. https://github.com/philipwalton/flexbugs






          .wrapper{
          position: relative;
          height: 205px;
          width: 200px;
          }
          .scroll{
          border: 1px solid red;
          overflow-y: scroll;
          height: 100%;
          width: 100%;
          display:flex;
          flex-direction: column;
          }
          .content{
          background-color: #ccc;
          flex:1;

          }
          .footer{
          background-color: #efefef;

          }

          <h1>
          little content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          Lorem ipsum dolor sit amet
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>


          <h1>
          large content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>

          <h1>
          large content with large footer
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go further down<br>
          Some additional content
          </div>
          </div>
          </div>








          share|improve this answer












          You need to create a flex container. (Though there are other ways to hande this problem as well: https://css-tricks.com/couple-takes-sticky-footer/)



          For the container, set the display to flex and flex-direction to column and give the scrollable content a flex value of 1. Remove positioning from footer, and there you have it.



          This will cause the content to stretch to fill the height of the container if any is available, and it will cause the footer to be stuck to the bottom of the content.



          For implementation: Be sure to follow up on all the cross-browser issues with flexbox, such as prefixes and bugs. https://github.com/philipwalton/flexbugs






          .wrapper{
          position: relative;
          height: 205px;
          width: 200px;
          }
          .scroll{
          border: 1px solid red;
          overflow-y: scroll;
          height: 100%;
          width: 100%;
          display:flex;
          flex-direction: column;
          }
          .content{
          background-color: #ccc;
          flex:1;

          }
          .footer{
          background-color: #efefef;

          }

          <h1>
          little content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          Lorem ipsum dolor sit amet
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>


          <h1>
          large content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>

          <h1>
          large content with large footer
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go further down<br>
          Some additional content
          </div>
          </div>
          </div>








          .wrapper{
          position: relative;
          height: 205px;
          width: 200px;
          }
          .scroll{
          border: 1px solid red;
          overflow-y: scroll;
          height: 100%;
          width: 100%;
          display:flex;
          flex-direction: column;
          }
          .content{
          background-color: #ccc;
          flex:1;

          }
          .footer{
          background-color: #efefef;

          }

          <h1>
          little content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          Lorem ipsum dolor sit amet
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>


          <h1>
          large content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>

          <h1>
          large content with large footer
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go further down<br>
          Some additional content
          </div>
          </div>
          </div>





          .wrapper{
          position: relative;
          height: 205px;
          width: 200px;
          }
          .scroll{
          border: 1px solid red;
          overflow-y: scroll;
          height: 100%;
          width: 100%;
          display:flex;
          flex-direction: column;
          }
          .content{
          background-color: #ccc;
          flex:1;

          }
          .footer{
          background-color: #efefef;

          }

          <h1>
          little content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          Lorem ipsum dolor sit amet
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>


          <h1>
          large content
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go below it
          </div>
          </div>
          </div>

          <h1>
          large content with large footer
          </h1>

          <div class="wrapper">
          <div class="scroll">
          <div class="content">
          1. Lorem ipsum dolor sit<br>
          2. Lorem ipsum dolor sit<br>
          3. Lorem ipsum dolor sit<br>
          4. Lorem ipsum dolor sit<br>
          5. Lorem ipsum dolor sit<br>
          6. Lorem ipsum dolor sit<br>
          7. Lorem ipsum dolor sit<br>
          8. Lorem ipsum dolor sit<br>
          9. Lorem ipsum dolor sit<br>
          10. Lorem ipsum dolor sit<br>
          11. Lorem ipsum dolor sit<br>
          12. Lorem ipsum dolor sit<br>
          13. Lorem ipsum dolor sit<br>
          </div>
          <div class="footer">
          This must stick to the bottom until .content is too long, then go further down<br>
          Some additional content
          </div>
          </div>
          </div>






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 20 at 20:29









          wlh

          1,6221722




          1,6221722












          • this looks promising. Let me try with my real code. Thanks so much so far!
            – Raphael Jeger
            Nov 20 at 20:44










          • If you like it, please consider a vote up and accept of my answer
            – wlh
            Nov 20 at 21:51


















          • this looks promising. Let me try with my real code. Thanks so much so far!
            – Raphael Jeger
            Nov 20 at 20:44










          • If you like it, please consider a vote up and accept of my answer
            – wlh
            Nov 20 at 21:51
















          this looks promising. Let me try with my real code. Thanks so much so far!
          – Raphael Jeger
          Nov 20 at 20:44




          this looks promising. Let me try with my real code. Thanks so much so far!
          – Raphael Jeger
          Nov 20 at 20:44












          If you like it, please consider a vote up and accept of my answer
          – wlh
          Nov 20 at 21:51




          If you like it, please consider a vote up and accept of my answer
          – wlh
          Nov 20 at 21:51


















          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.





          Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


          Please pay close attention to the following guidance:


          • 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%2f53399404%2fsticky-footer-in-scroll-y-container-depending-on-height-of-content%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

          Costa Masnaga

          Fotorealismo

          Sidney Franklin