html想设置一个窗口固定浮动在页面某个位置的代码是什么啊?

2025-04-04 04:19:13
推荐回答(2个)
回答1:

用 CSS 的 fixed 属性值,示例:

.infoWin {
    position: fixed;
    right: 10px;
    bottom: 10px;
    width: 200px;
    height: 120px;
}

上述代码会让 .infoWin 这个元素固定悬浮在页面右下方。

回答2:

fixed 属性就可以的,很简单。