position的所有属性

postion属性链接

sticky 粘性定位

  1. // .jsx
  2. export default function (props){
  3. return (
  4. <div className='wrap'>
  5. <div className='nav-wrap'>
  6. nav-sticky
  7. </div>
  8. <div style={{height:'100vh'}}></div>
  9. </div>
  10. )
  11. }
  12. // .css
  13. .wrap{
  14. height:30vh;
  15. overflow-y: scroll;
  16. }
  17. .nav-wrap{
  18. position: sticky;
  19. top: 0;
  20. left: 0;
  21. }