CSS + JS: Accordion tabs move other tabs off screen











up vote
0
down vote

favorite












Expected Behavior: When page loads, initial tab is open in the accordion. The other accordion tabs are positioned on the bottom of the screen and slide up when section closes.



If accordion section is longer then screen, the area is scrollable but tabs remained positioned on bottom of screen.



Issue: Currently, my accordion pushes all elements down the page. I believe this issue is caused because i can't get the position + overflow right. Any help would be appreciated.



Expected accordion look.



Accordion CSS:



.accordion {
align-items: flex-start;
align-content: flex-start;
border-left: 1px solid black;
border-bottom: 1px solid black;
box-sizing: border-box;
display: flex;
flex-flow: row wrap;
height: calc(100vh - 68px);
position: relative;
right: 0;
top: 0;

&__panel {
border-bottom: 1px solid black;
flex: 1 100%;
flex-direction: column;
position: relative;
overflow: hidden;

&__header {
font-size: 1.25em;
line-height: 2em;
padding: 5px;
text-align: left;

span {
float: right;
padding: 0 1em 0 0;

img {
width: 17px;
}
}
}

&__body {
}
}

.active {
background: black;
color: lightgray;
}

.hide {
display: none;
}
}


HTML Layout:



<div class="accordion">
<div class="accordion__panel">
<div class="accordion__panel__header">SOME HEADER<span><img src="static/svg/caret.svg"></span></div>
<div class="accordion__panel__body hide">
SOME CONTENT GOES HERE.
</div>
</div>
</div>


I don't believe my JS is relevant in this case, but can post that too, if necessary.



The JS removes the class hide from the body. This is temp till animation is implemented.










share|improve this question


























    up vote
    0
    down vote

    favorite












    Expected Behavior: When page loads, initial tab is open in the accordion. The other accordion tabs are positioned on the bottom of the screen and slide up when section closes.



    If accordion section is longer then screen, the area is scrollable but tabs remained positioned on bottom of screen.



    Issue: Currently, my accordion pushes all elements down the page. I believe this issue is caused because i can't get the position + overflow right. Any help would be appreciated.



    Expected accordion look.



    Accordion CSS:



    .accordion {
    align-items: flex-start;
    align-content: flex-start;
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    height: calc(100vh - 68px);
    position: relative;
    right: 0;
    top: 0;

    &__panel {
    border-bottom: 1px solid black;
    flex: 1 100%;
    flex-direction: column;
    position: relative;
    overflow: hidden;

    &__header {
    font-size: 1.25em;
    line-height: 2em;
    padding: 5px;
    text-align: left;

    span {
    float: right;
    padding: 0 1em 0 0;

    img {
    width: 17px;
    }
    }
    }

    &__body {
    }
    }

    .active {
    background: black;
    color: lightgray;
    }

    .hide {
    display: none;
    }
    }


    HTML Layout:



    <div class="accordion">
    <div class="accordion__panel">
    <div class="accordion__panel__header">SOME HEADER<span><img src="static/svg/caret.svg"></span></div>
    <div class="accordion__panel__body hide">
    SOME CONTENT GOES HERE.
    </div>
    </div>
    </div>


    I don't believe my JS is relevant in this case, but can post that too, if necessary.



    The JS removes the class hide from the body. This is temp till animation is implemented.










    share|improve this question
























      up vote
      0
      down vote

      favorite









      up vote
      0
      down vote

      favorite











      Expected Behavior: When page loads, initial tab is open in the accordion. The other accordion tabs are positioned on the bottom of the screen and slide up when section closes.



      If accordion section is longer then screen, the area is scrollable but tabs remained positioned on bottom of screen.



      Issue: Currently, my accordion pushes all elements down the page. I believe this issue is caused because i can't get the position + overflow right. Any help would be appreciated.



      Expected accordion look.



      Accordion CSS:



      .accordion {
      align-items: flex-start;
      align-content: flex-start;
      border-left: 1px solid black;
      border-bottom: 1px solid black;
      box-sizing: border-box;
      display: flex;
      flex-flow: row wrap;
      height: calc(100vh - 68px);
      position: relative;
      right: 0;
      top: 0;

      &__panel {
      border-bottom: 1px solid black;
      flex: 1 100%;
      flex-direction: column;
      position: relative;
      overflow: hidden;

      &__header {
      font-size: 1.25em;
      line-height: 2em;
      padding: 5px;
      text-align: left;

      span {
      float: right;
      padding: 0 1em 0 0;

      img {
      width: 17px;
      }
      }
      }

      &__body {
      }
      }

      .active {
      background: black;
      color: lightgray;
      }

      .hide {
      display: none;
      }
      }


      HTML Layout:



      <div class="accordion">
      <div class="accordion__panel">
      <div class="accordion__panel__header">SOME HEADER<span><img src="static/svg/caret.svg"></span></div>
      <div class="accordion__panel__body hide">
      SOME CONTENT GOES HERE.
      </div>
      </div>
      </div>


      I don't believe my JS is relevant in this case, but can post that too, if necessary.



      The JS removes the class hide from the body. This is temp till animation is implemented.










      share|improve this question













      Expected Behavior: When page loads, initial tab is open in the accordion. The other accordion tabs are positioned on the bottom of the screen and slide up when section closes.



      If accordion section is longer then screen, the area is scrollable but tabs remained positioned on bottom of screen.



      Issue: Currently, my accordion pushes all elements down the page. I believe this issue is caused because i can't get the position + overflow right. Any help would be appreciated.



      Expected accordion look.



      Accordion CSS:



      .accordion {
      align-items: flex-start;
      align-content: flex-start;
      border-left: 1px solid black;
      border-bottom: 1px solid black;
      box-sizing: border-box;
      display: flex;
      flex-flow: row wrap;
      height: calc(100vh - 68px);
      position: relative;
      right: 0;
      top: 0;

      &__panel {
      border-bottom: 1px solid black;
      flex: 1 100%;
      flex-direction: column;
      position: relative;
      overflow: hidden;

      &__header {
      font-size: 1.25em;
      line-height: 2em;
      padding: 5px;
      text-align: left;

      span {
      float: right;
      padding: 0 1em 0 0;

      img {
      width: 17px;
      }
      }
      }

      &__body {
      }
      }

      .active {
      background: black;
      color: lightgray;
      }

      .hide {
      display: none;
      }
      }


      HTML Layout:



      <div class="accordion">
      <div class="accordion__panel">
      <div class="accordion__panel__header">SOME HEADER<span><img src="static/svg/caret.svg"></span></div>
      <div class="accordion__panel__body hide">
      SOME CONTENT GOES HERE.
      </div>
      </div>
      </div>


      I don't believe my JS is relevant in this case, but can post that too, if necessary.



      The JS removes the class hide from the body. This is temp till animation is implemented.







      javascript css accordion






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked yesterday









      Bardworx

      1871111




      1871111





























          active

          oldest

          votes











          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',
          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%2f53238173%2fcss-js-accordion-tabs-move-other-tabs-off-screen%23new-answer', 'question_page');
          }
          );

          Post as a guest





































          active

          oldest

          votes













          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes
















           

          draft saved


          draft discarded



















































           


          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53238173%2fcss-js-accordion-tabs-move-other-tabs-off-screen%23new-answer', 'question_page');
          }
          );

          Post as a guest




















































































          Popular posts from this blog

          Full-time equivalent

          Bicuculline

          さくらももこ