Issue
I am trying to build a sticky toolbar, that is aligned to the right side. But I cant get it to be aligned to that side:
If I use float: right;
the element beneath gets pulled up, if I use a parent container, that spans over the whole screen width and use justify-content: end;
And the use z-index: 10;
or so, screen at that parent element is blocked.
So how do I align that element to the right side most elegantly?
.container {
background-color: cyan;
height: 1000px;
}
.sticky-element {
position: sticky;
top: 20px;
}
.other-stuff {
padding: 20px;
}
<div class="container">
<div class="sticky-element">
<button>Button 1</button>
<button>Button 2</button>
</div>
<div class="other-stuff">
Some other stuff that is drawn up if float: right is applied on sticky-element.
(But shouldn't)
</div>
</div>
Solution
You can set a width:max-content
and a margin-left:auto
on .sticky-element
, like so:
.container {
background-color: cyan;
height: 1000px;
}
.sticky-element {
position: sticky;
top: 20px;
width:max-content;
margin-left:auto;
}
.other-stuff {
padding: 20px;
}
<div class="container">
<div class="sticky-element">
<button>Button 1</button>
<button>Button 2</button>
</div>
<div class="other-stuff">
Some other stuff that is drawn up if float: right is applied on sticky-element.
(But shouldn't)
</div>
</div>
Answered By - Youssouf Oumar
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.