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

              
                <div class="container">
  <button type="button" class="button">✅我是一个button元素💯</button>
  <div class="button">🚫我是个div,无法获得焦点(未显式设置了tabindex="0")</div>
  <button type="button" tabindex="1" class="button">✅从浏览器URL栏开始按tab键,我先得到焦点(我设置了tabindex="1")💯</button>
  <div class="button" tabindex="0">✅我是个div,按照DOM顺序获得焦点(显式设置了tabindex="0")💯</div>
</div>
              
            
!

CSS

              
                
@import 'https://fonts.googleapis.com/css?family=Share+Tech+Mono';

@import 'https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css';

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    width: 100vw;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('https://s3-us-west-2.amazonaws.com/s.cdpn.io/1376484/jess-harding-lqT6NAmTaiY-unsplash.jpg'),radial-gradient(#28a3dd, #0d7751);
    background-size: cover;
    background-position: center;
    font-family: "Share Tech Mono", monospace;
    font-size: 2rem;
    background-blend-mode: multiply,screen, overlay;
}

.container {
    position: relative;
    background-size: cover;
    background-position: center;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding:2vw;
    min-width: 80vw;
    box-sizing: border-box;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: .3s ease;
    margin: 3vw;
    display: flex;
    flex-direction: column;
}

.button {
	display: inline-flex;
	font-size: 16px;
	font-weight: 700;
	border-radius: 5px;
	transition: background .3s;
  padding: 4vh 6vh;
  background: #11a8ab;
  border: none 0;
  color: #fff;
  align-items: center;
  justify-content: center;
  margin: 1vh;
}

.button:hover {
  background: #0F9295;
}

.button:focus,
.button:active {
    box-shadow: inset 0 0 3px  3px #f36;
} 

              
            
!

JS

              
                
              
            
!
999px

Console