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

              
                .content
  details
    summary Open details
    p Lorem, ipsum dolor sit amet consectetur adipisicing elit. Totam cupiditate sit blanditiis itaque quasi sunt optio repellendus, quaerat nam porro dolores beatae earum illum obcaecati animi nobis quam voluptates minus.
  
  details
    summary Open details
    p Lorem ipsum dolor sit amet, consectetur adipisicing elit. Doloribus perferendis fugiat tenetur officiis natus dolorem numquam placeat incidunt nesciunt maxime vitae possimus, ab, unde quos eveniet reprehenderit fugit corporis et?
  
  details#details(open)
    summary Open details
    p Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sapiente porro quasi nesciunt tenetur maxime voluptates ea velit, architecto totam earum id ab alias rem quia repellendus soluta vel dolore fuga.

  p.text-right
    button(onclick="closeDetails()") Close details
              
            
!

CSS

              
                body
  margin: 0
  height: 100vh
  overflow: hidden
  font-family: sans-serif
  background: linear-gradient(45deg, rgb(251, 171, 126), rgb(247, 206, 104))
  
.content    
  position: absolute
  top: 50%
  left: 50%
  transform: translate(-50%, -50%)
  padding: 1em
  width: 50vw

details
  min-width: 100%
  
  // styling
  margin: 0.25em auto  
  p
    margin: 0
    padding: 0.25em 1em
  
  summary
    color: #3b393d
    cursor: pointer
    user-select: none
    
    // styling    
    border-radius: 0.35em
    padding: 1em
    border-bottom: 1px solid red
    background: linear-gradient(45deg, rgb(246, 146, 89), rgb(241, 105, 117))
    color: white
    
    // &::-webkit-details-marker
    //   background: url(right-arrow.svg)
    //   color: transparent
  
    &:forus
    outline: none

.text-right
  text-align: right
  
button
  position: relative
  padding-left: 1em
  border: none
  background-color: transparent
  background-clip: padding-box
  color: #eee
  
  &::before
    position: absolute
    left: 0
    top: 0
    content: "▲"
    transform: rotate(-90deg)
    font-size: inherit
  
  &:focus
  outline: none
  
[open] ~ p button
  color: #3b393d
  cursor: pointer
  
  &::before
    transform: rotate(0deg)
              
            
!

JS

              
                function closeDetails() {
  $("details[open]")
    .removeAttr("open");
}

$("details").on("click", function() {
    $("details[open]")
        .not(this)
        .removeAttr("open");
});
              
            
!
999px

Console