发布网友 发布时间:2022-06-02 16:56
共2个回答
热心网友 时间:2023-11-20 11:56
设置样式,如在当前页面,在<head></head>之间设置,如下:
<head>
<style>
.right-top
{
width: 40px;
height:40px;
position: fixed;/*这是必须的*/
z-index: 999;
left:95%;/*这是必须的*/
top: 40px;/*这是必须的*/
background:red;
}
</style>
</head>
页面的元素使用该样式,例如div,
<div class='right-top'></div>
效果图如下(红色小方块不会随滚动条移动):
热心网友 时间:2023-11-20 11:56
.jump-top-box {
width: 40px;
position: fixed;
z-index: 999;
top: -1000px;
}
关键是position属性
追问对不起本人小白