Created
December 22, 2019 11:35
-
-
Save d1y/939cc97a0560281254548b7ddfcaee98 to your computer and use it in GitHub Desktop.
css 自动隐藏滚动
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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