css button move right code example
Example 1: align button right
<input type="button" value="Click Me" style="float: right;">
Example 2: Move button in CSS
<html>
<head>
</head>
<body>
<div style = "position:relative; left:80px; top:2px; background-color:yellow;">
This div has relative positioning.
</div>
</body>
</html>