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

Auto Save

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

              
                <section class="projects">
  <h2>My Projects</h2>
  <ul>
     <li>
       <img src="https://ignitioncms.com/img/ignition-light.svg" alt="Ignition Logo" title="Ignition" height="100">
       <h3>Ignition CMS</h3>
       <div class="content">
          <p>Ignition is a headless CMS specifically created for Firebase. Designed with ease of use in mind for both content creators and developers the aim is to allow you to focus on your project.</p>
       </div>
       <a href="https://ignitioncms.com" target="_blank" rel="noopener">Check out Ignition CMS</a>
    </li>
    <li>
      <img src="https://app.cirrostyle.com/assets/img/cirrostyle.svg" alt="cirrostyle Icon" title="Cirrostyle" height="100">
      <h3>Cirrostyle asdf asdf asdf adf asdf asdfasdf </h3>
      <div class="content"><p>A brand management and sharing tool, Cirrostyle allows you to define and share your brand information, such as colors and typography, with your teams. It also provides the ability to organize, store, share, and download assets.</p></div>
      <a href="https://cirrostyle.com/" target="_blank" rel="noopener">Check out Cirrostyle</a>
    </li>
    <li>
      <img src="https://flexepark.com/assets/imgs/flexepark-horizontal.svg" height="100" alt="FlexePark Logo" title="FlexePark">
      <h3>FlexePark&trade;</h3>
      <div class="content"><p>FlexePark works with businesses in your community to make parking friendlier! Parking spots that were once designated "No Parking" zones can now be made available for public use after business hours.</p>
<p>Rather than closing their parking lots after hours, area businesses who want to improve their community can leverage the power of FlexePark to open those valuable parking spaces to anyone who needs them simply by switching their "No Parking" signs to FlexePark signs. It’s a win for FlexePark customers and for businesses, too!</p></div>
      <a href="https://flexepark.com" target="_blank" rel="noopener">Checkout FlexePark</a>
    </li>
    <li>
      <img src="https://lorelink.com/img/logo.svg" height="100" alt="Lore Link logo" title="Lore Link">
      <h3>Lore Link</h3>
      <div class="content"><p>Lore Link is a premium-quality RPG campaign management tool for Dungeon Masters, Game Masters, Storytellers and Keepers of all types. Here, you’ll find all the pieces you’ll need to ensure that each and every one of your campaigns runs smoothly and results in both yourself and your players having the smoothest, most enjoyable experience possible during your sessions.</p></div>
      <a href="https://lorelink.com" target="_blank" rel="noopener">Checkout Lore Link</a>
    </li>
  </ul>
    
</section>
              
            
!

CSS

              
                :root {
  padding: 36px;
  font-family: sans-serif
}

.projects ul {
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 100px max-content auto max-content;
  gap: 0 2rem;
}

.projects ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / 5;
}
.projects ul li img {
  grid-row: 1;
  max-width: 100%;
  justify-self: center;
}
.projects ul li h3 {
  grid-row: 2;
  align-self: center;
}
.projects ul li .content {
  grid-row: 3;
}
.projects ul li a {
  grid-row: 4;
}

@supports not (grid-template-rows: subgrid) {
  .projects > ul li {
    grid-template-rows: 100px min-content auto min-content;
  }
}
              
            
!

JS

              
                
              
            
!
999px

Console