ウェブ家の備忘録

ウェブデザイナーの備忘録

画面に追従するボタン


<style>
.right_btn{
position:fixed;
right:10px;
top:0;
bottom:0;
margin:auto;
width:100px;
height:100px;
z-index:999;
</style>
<button class="right_btn">ボタン</button>