Answers for "left corner button css"

CSS
1

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>
Posted by: Guest on January-30-2022
2

rounded corners css button

.btn{
    border: none;
    padding: 7px 26px;
    text-align: center;
    color: white;
    background: #dc3545;
    border-radius: 40px;
}
Posted by: Guest on October-15-2021

Browse Popular Code Answers by Language