右下角的对齐位置粘性不起作用
Aligning position sticky at the bottom right is not working
我需要将此按钮固定在屏幕的右下角,但如您所见,我的代码有问题。我错过了什么?
你能帮忙吗?
谢谢
html {
background: #ccc;
}
.chat {
width: 55px;
height: 55px;
position: sticky;
bottom: 20px;
right: 20px;
background: red;
border: 0;
}
<button class="chat"></button>
试试这个:
.chat {
width: 55px;
height: 55px;
position: fixed;
bottom: 20px;
left: 20px;
background: red;
border: 0;
}
position: fixed 是关键元素。
我需要将此按钮固定在屏幕的右下角,但如您所见,我的代码有问题。我错过了什么?
你能帮忙吗? 谢谢
html {
background: #ccc;
}
.chat {
width: 55px;
height: 55px;
position: sticky;
bottom: 20px;
right: 20px;
background: red;
border: 0;
}
<button class="chat"></button>
试试这个:
.chat {
width: 55px;
height: 55px;
position: fixed;
bottom: 20px;
left: 20px;
background: red;
border: 0;
}
position: fixed 是关键元素。