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.
谁能告诉我如何在我的网站上嵌入一个侧面按钮,就像这个网站中的那个一样。
我还看到一些带有不可移动聊天框的网站。有人可以告诉我吗?
我认为您指的position:fixed是 CSS 中的属性。
position:fixed
它被锁定在屏幕上,并且在页面滚动时不会移动。
要嵌入,只需使用<div style="display:block; z-index:999; position:fixed; top:0px; height:100px;">Content</div>,您的内容将在屏幕左侧向下 100 像素。
<div style="display:block; z-index:999; position:fixed; top:0px; height:100px;">Content</div>
z-index和display是分别用于指定层和包装的属性。
z-index
display