For aligning any image at bottom of the screen with sticky behaviour
.fixImage{
position: fixed;
bottom: 0;
right: 0;
}
<img src="yourimagepath" class="fixImage"/>
As per the requester query I have updated code with max-width: 250px
.fixImage{
position: fixed;
bottom: 0;
right: 0;
max-width: 250px;
}
<img src="https://placehold.it/412x413" class="fixImage"/>
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…