You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be easy to put buttons in bottom-left with:
// Put in bottom-left corner
.bottom-left {
position: absolute;
bottom:10px;
left:10px;
}
The main problem is that each slide is wrapped in a <section> tag that has position: relative attached to it. So the absolute position is relative to that instead of the full screen. This works except for when text overflows in the vertical direction, making the button cover some of the text
The text was updated successfully, but these errors were encountered:
It would be easy to put buttons in bottom-left with:
The main problem is that each slide is wrapped in a
<section>
tag that hasposition: relative
attached to it. So the absolute position is relative to that instead of the full screen. This works except for when text overflows in the vertical direction, making the button cover some of the textThe text was updated successfully, but these errors were encountered: