答案 0 :(得分:0)
您需要使用
<button id="middleButton">Main Page</button>
然后,在CSS中,使用它。
<style>
button.middleButton {
position : relative;/*This makes you able to move the button*\
bottom: 300;/* will move up 300px*\
top: 300;/*will move down 300px*\
left: 300;/*will move right 300px*\
right: 300;/*will move left 300px*\
</style>
希望这有帮助!