标签: javascript html css
如何在页面右侧创建一个小型迷你浮动窗口?
我想创造类似于" LIVE CHAT"浮窗概念。
Q
答案 0 :(得分:1)
如果您希望它与页面一起滚动,请使用固定位置,否则使用绝对位置:
#chat { width: 300px; height: 100%; position: fixed; right: 0; top: 0; background: red; }