Button to the right hand side of the screen next to scroll bar

0
Hi,   I have a requirement where I would like to have a button to the right hand side of the screen next to the scroll bar. The position of the button should not be change when the page is zoom in or zoom out. Something similar to the demo user button.   Can you please guide me how to implement the same. Thanks in advance.
asked
1 answers
0

The below CSS properties helped me.

position: fixed;

top: 100px;

right: 0;

answered