Skip to content

Instantly share code, notes, and snippets.

@d1y
Created December 22, 2019 11:35
Show Gist options
  • Select an option

  • Save d1y/939cc97a0560281254548b7ddfcaee98 to your computer and use it in GitHub Desktop.

Select an option

Save d1y/939cc97a0560281254548b7ddfcaee98 to your computer and use it in GitHub Desktop.
css 自动隐藏滚动
const App = ()=> {
render() {
return (
<div style={{
width: '50vh',
overflow: 'scroll'
}}>
<div style={{ height: `120vh` }}></div>
</div>
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment