我需要这个按钮在屏幕的右下角,但是正如你所看到的,我的代码有问题,我遗漏了什么?你能帮忙吗?谢谢。
html { background: #ccc; } .chat { width: 55px; height: 55px; position: sticky; bottom: 20px; right: 20px; background: red; border: 0; }
<button class="chat"></button>
pzfprimi1#
试试这个:
.chat { width: 55px; height: 55px; position: fixed; bottom: 20px; left: 20px; background: red; border: 0; }
位置:固定是关键因素。
9gm1akwq2#
您可以使用float: right;访问它。
float: right;
html { background: #ccc; } .chat { width: 55px; height: 55px; position: sticky; bottom: 20px; right: 20px; background: red; border: 0; float: right; }
2条答案
按热度按时间pzfprimi1#
试试这个:
位置:固定是关键因素。
9gm1akwq2#
您可以使用
float: right;
访问它。