Closed luhaopeng closed 5 years ago
the 'height' inside props overlays the 'height' in class '.for-fullscreen'
props里的{ height: '600px' } 会使fullscreen无法真正全屏。因为props里的height直接加在元素上,优先级太高,覆盖了.for-fullscreen里的height: 100%;,.for-container里已经包含了height: 600px;,无需重复设置默认高度。
props
{ height: '600px' }
fullscreen
height
.for-fullscreen
height: 100%;
.for-container
height: 600px;
如果考虑自定义高度的话,要么考虑从自定义options读取height,要么考虑其他方式实现fullscreen。
Short
the 'height' inside props overlays the 'height' in class '.for-fullscreen'
Detail
props
里的{ height: '600px' }
会使fullscreen
无法真正全屏。因为props
里的height
直接加在元素上,优先级太高,覆盖了.for-fullscreen
里的height: 100%;
,.for-container
里已经包含了height: 600px;
,无需重复设置默认高度。如果考虑自定义高度的话,要么考虑从自定义options读取height,要么考虑其他方式实现fullscreen。