CSS Position Fixed

Fixed elements stay in the same place during scrolling.

Preview

Code

<style>
.box{
position:fixed;
bottom:10px;
right:10px;
background:#2563eb;
color:white;
padding:10px;
}
</style>

<div class="box">Fixed button</div>

More CSS Position Examples (9)