CSS 设置 100% 宽度
Creating a CSS Curtain Opening Effect | CSS-Tricks
1.curtain {
2 width: 100%; /* Ensures the component is the full screen width */
3 height: 100vh; /* We're using this for demo purposes */
4 overflow: hidden; /* Allows us to slide the panels outside the container without them showing */
5}