2016-09-26 107 views

回答

2

您需要使用「position」屬性並將其設置爲「fixed」。 這裏是一個例子。

<div style="width:200px; height:200px; border:1px solid; overflow:scroll;"> 
 
    <div style = "width:180px; height:50px; border: 1px solid; position:fixed;"> 
 
    abc 
 
    </div> 
 

 
    <div style = "width: 180px; height:250px; border: 1px solid; margin-top:60px;"> 
 
    123 
 
    </div> 
 
</div>