web-view.css 343 B

123456789101112131415161718192021222324
  1. uni-web-view {
  2. display: flex;
  3. }
  4. /* #ifndef UNI-APP-X */
  5. uni-web-view.uni-webview--fullscreen {
  6. position: absolute;
  7. left: 0;
  8. right: 0;
  9. top: 0;
  10. bottom: 0;
  11. }
  12. /* #endif */
  13. /* #ifdef UNI-APP-X */
  14. uni-web-view.uni-webview {
  15. flex: 1;
  16. }
  17. uni-web-view.uni-webview > iframe {
  18. width: 100%;
  19. height: 100%;
  20. border: none;
  21. }
  22. /* #endif */