how to give position to button in css code example
Example 1: css button position
.button {
position: absolute;
left: 100px;
top: 150px;
}
Example 2: how to change the position of a button in css
#mainbutton {
position: relative;
bottom: 30px;
}