html页面上的迷你大小的浮动窗口

时间:2014-04-08 05:46:25

标签: javascript html css

如何在页面右侧创建一个小型迷你浮动窗口?

我想创造类似于" LIVE CHAT"浮窗概念。

Q

1 个答案:

答案 0 :(得分:1)

如果您希望它与页面一起滚动,请使用固定位置,否则使用绝对位置:

#chat
{
    width: 300px;
    height: 100%;

    position: fixed;
    right: 0;
    top: 0;

    background: red;
}

JSFiddle