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

              
                <div class="fullcontainer">
  <div class="innercontainer">
    <div class="append-3 prepend-3 justifytext prepend-bottom" > 
      <h1 class="centertext prepend-bottom">Hello</h1>
          Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent non fringilla ligula. Maecenas at pretium purus. Nulla f

Cras nunc ante, commodo at metus nec, interdum tincidunt orci. Nam ac turpis justo. Suspendisse commodo dui sed mauris aliquam, vitae blandit velit aliquam. Donec sodales vestibulum mauris eget dapibus. In vitae tempus sapien. Proin euismod, diam at condimentum condimentum, dui justo convallis felis, a sagittis mi augue at orci. Ut convallis enim non quam finibus, non porttitor metus sollicitudin. Nullam lacinia dolor sit amet ante euismod sodales. Vestibulum porta congue erat sit amet maximus. Nullam dictum magna et leo elementum commodo. Aenean hendrerit vehicula malesuada.
    </div>
    <div class="floatlfeft ">
      . Sed vel arcu leo. Sed rhoncus nisl nec tortor sodales malesuada. Pellentesque nibh neque, molestie at hendrerit ac, dictum nec tortor. Cras nunc ante, commodo at metus nec, interdum tincidunt orci. Nam ac turpis justo. Suspendisse commodo dui sed mauris aliquam, vitae blandit velit aliquam. Donec sodales vestibulum mauris eget dapibus. In vitae tempus sapien. Proin euismod, diam at condimentum condimentum, dui justo convallis felis, a sagittis mi augu
    </div>
    <div class="floatright">
      . Sed vel arcu leo. Sed rhoncus nisl nec tortor sodales malesuada. Pellentesque nibh neque, molestie at hendrerit ac, dictum nec tortor. Cras nunc ante, commodo at metus nec, interdum tincidunt orci. Nam ac turpis justo. Suspendisse commodo dui sed mauris aliquam, vitae blandit velit aliquam. Donec sodales vestibulum mauris eget dapibus. In vitae tempus sapien. Proin euismod, diam at condimentum condimentum, dui justo convallis felis, a sagittis mi augu
    </div>
    <div class="footer centertext prepend-top">Cezary Walenciuk 2020 rok
    </div>
  </div>
  
</div>
              
            
!

CSS

              
                * {
  margin: 0;
  padding: 0;
}
body {
    background-color: #666666;
}

.fullcontainer {
  height:100%;
}

.innercontainer {
  width:800px; 
  margin:0 auto;
  background-color: white;
}

.append-3 {
    padding-right: 66px;
}

.prepend-3 {
    padding-left: 66px;
}

.justifytext {
  text-align:justify;
}

.centertext {
  text-align:center;
}

.prepend-bottom {
  padding-bottom:60px;
}

.prepend-top {
  padding-top:60px;
}


.floatlfeft {
  float:left;
  width:400px;
  background-color:inherit;
 
}
.floatright {
  float:right;
  width:400px;
  background-color:inherit;
}

.footer {
 
  width:100%;
  clear:both;
}
              
            
!

JS

              
                
              
            
!
999px

Console