Skip to content
Snippets Groups Projects
Select Git revision
  • 592e01efaee1629bfaa4b7884a63229ad9d527fc
  • master default protected
  • 1.31
  • 4.38.8
  • 4.38.7
  • 4.38.6
  • 4.38.5
  • 4.38.4
  • 4.38.3
  • 4.38.2
  • 4.38.1
  • 4.38.0
  • 4.37.2
  • 4.37.1
  • 4.37.0
  • 4.36.0
  • 4.35.0
  • 4.34.1
  • 4.34.0
  • 4.33.1
  • 4.33.0
  • 4.32.2
  • 4.32.1
23 results

318.html

Blame
  • 318.html 1.31 KiB
    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
        <title>layout problems with split panel #318</title>
        <script src="./318.mjs" type="module"></script>
    
        <style>
            html, body {
                margin: 0;
                padding: 0;
                height: 100vh;
                overflow: hidden;
                width: 100%;
                box-sizing: border-box;
            }
    
            /* Optional: alle Elemente im Box-Modell einheitlich behandeln */
            *, *::before, *::after {
                box-sizing: inherit;
            }
    
            monster-split-panel {
                height: 100%;
                width: 100%;
            }
    
        </style>
    
    </head>
    <body>
    
    <div style="display: none">
        <h1>layout problems with split panel #318</h1>
        <p></p>
        <ul>
            <li><a href="https://gitlab.schukai.com/oss/libraries/javascript/monster/-/issues/318">Issue #318</a></li>
            <li><a href="/">Back to overview</a></li>
        </ul>
    
    </div>
    
    <monster-panel id="p1">
        <monster-split-panel>
            <monster-panel id="p2">
                <div>Panel 1</div>
            </monster-panel>
            <monster-panel id="p3">
                <div>Panel 5</div>
            </monster-panel>
        </monster-split-panel>
    </monster-panel>
    
    
    </body>
    </html>