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

              
                <a href="#" class="text_arrow-btn">
  <span>Все товары</span>
  <svg width="37" height="15" viewBox="0 0 37 15" fill="none" xmlns="http://www.w3.org/2000/svg">
    <path d="M0 7.5H36M36 7.5L31.1538 0.5M36 7.5L31.1538 14.5" stroke="#323F4C"></path>
  </svg>
</a>
              
            
!

CSS

              
                a 
  text-decoration: none
  color: inherit
  font-family: sans-serif
  color: #323F4C


.text_arrow-btn
   display: flex
   align-items: center
   span
      margin-right: 16px
   svg
      transition: transform 0.3s
      width: 36px
      height: 14px
   path
      transition: stroke 0.3s
   &:hover
      svg
         transform: translateX(12px)
      span
         text-decoration: underline
   &:active
      color: #B6B5B5
      path
         stroke: #B6B5B5
              
            
!

JS

              
                
              
            
!
999px

Console