Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您如何允许 HTML 符号实体浮动固定到浏览器屏幕。它用于登录页面,我希望在登录链接旁边浮动一个向下箭头,该链接距左侧大约 25 像素,距页面角落顶部 10 像素。谢谢
用于position:fixed元素样式。
position:fixed
.fixedElement { position:fixed; left:25px; top:10px; }
Js小提琴