How To Put Button In Top Right Corner In Html

how to put button in top right corner in html
<style>
#mybutton {
position: relative;
top: 0;
right: 0;
}
</style>

<button id="mybutton">This is a button</button>

 

Leave a Comment