Pen Settings

HTML

CSS

CSS Base

Vendor Prefixing

Add External Stylesheets/Pens

Any URLs added here will be added as <link>s in order, and before the CSS in the editor. You can use the CSS from another Pen by using its URL and the proper URL extension.

+ add another resource

JavaScript

Babel includes JSX processing.

Add External Scripts/Pens

Any URL's added here will be added as <script>s in order, and run before the JavaScript in the editor. You can use the URL of any other Pen and it will include the JavaScript from that Pen.

+ add another resource

Packages

Add Packages

Search for and use JavaScript packages from npm here. By selecting a package, an import statement will be added to the top of the JavaScript editor for this package.

Behavior

Save Automatically?

If active, Pens will autosave every 30 seconds after being saved once.

Auto-Updating Preview

If enabled, the preview panel updates automatically as you code. If disabled, use the "Run" button to update.

Format on Save

If enabled, your code will be formatted when you actively save your Pen. Note: your code becomes un-folded during formatting.

Editor Settings

Code Indentation

Want to change your Syntax Highlighting theme, Fonts and more?

Visit your global Editor Settings.

HTML

              
                <!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title>Understanding CSS: visibility hidden vs display none</title>

</head>
<body>
    <h1>Understanding CSS: visibility hidden vs display none</h1>
    <div id="container">
        <div id="left">
            <div>
                <p>When it comes to hide HTML content to the client</p> 
                <p>visibility: hidden and display: none. </p>
            </div>
            <div>
                <p>These two rules are not synonyms, no:</p> 
                <ul>
                    <li>visibility: hidden means that the element won't be visible but the space is allocated</li>
                    <li>display: none unlike the first one means the element will</li>
                </ul>
            </div>
            <div>
                <p>The DNA strand is missing the pairing element.</p> 
                <p>For example, for the input GCG, return [["G", "C"], ["C","G"],["G", "C"]]</p>
            </div>  
            <div>
                <p>Our goal of this exercice is to <span>return the missing trand</span>  into a 2d array</p> 
                <p>Some people think they are just synonyms, others are just confused </p>
            </div>
                      
        </div>
        <div id="right">
            <div class="vh">
                <p>When it comes to hide HTML content to the client</p> 
                <p>visibility: hidden and display: none. </p>
                </div>
                <div>
                    <p>These two rules are not synonyms, no:</p> 
                    <ul>
                        <li>visibility: hidden means that the element won't be visible but the space is allocated</li>
                        <li>display: none unlike the first one means the element will</li>
                    </ul>
                </div>
                <div class="dn">
                    <p>The DNA strand is missing the pairing element.</p> 
                    <p>For example, for the input GCG, return [["G", "C"], ["C","G"],["G", "C"]]</p>
                </div>
                <div>
                    <p>Our goal of this exercice is to <span class="vh">return the missing trand</span>  into a 2d array</p> 
                    <p>Some people think they are just synonyms, others are just confused </p>
                </div>
                
        </div>
    </div>
</body>
</html>
              
            
!

CSS

              
                 #container {
            display: flex;
            justify-content: space-between;
            width: 71em;
        }

        #left,
        #right {
            width: 35em;

        }

        #left div:first-child,
        #right div:first-child {
            background: olivedrab;
        }

        #left div:nth-child(2),
        #right div:nth-child(2) {
            background: orange;
        }

        #left div:nth-child(3),
        #right div:nth-child(3) {
            background:cadetblue;
        }

        #left div:last-child,
        #right div:last-child {
            background:orchid;
        }

        .vh {
            visibility: hidden;
        }

        .dn {
            display: none;
        }
              
            
!

JS

              
                
              
            
!
999px

Console