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 yesterday
Bardworx
1871111
1871111
add a comment |
add a comment |
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
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
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
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
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