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.
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
add a comment |
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.
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
add a comment |
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.
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
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.
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
javascript css accordion
asked Nov 10 at 10:47
Bardworx
1921112
1921112
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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