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

              
                <!-- 加载图标库 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<h2>带有图标的响应式导航栏</h2>
<p>尝试调整浏览器窗口的大小以查看响应效果。</p>
<div class="navbar">
  <a class="active" href="#"><i class="fa fa-fw fa-home"></i> Home</a>
  <a href="#"><i class="fa fa-fw fa-search"></i> Search</a>
  <a href="#"><i class="fa fa-fw fa-envelope"></i> Contact</a>
  <a href="#"><i class="fa fa-fw fa-user"></i> Login</a>
</div>
              
            
!

CSS

              
                body {margin: 0;font-family: Arial, Helvetica, sans-serif;}
/* 设置导航栏样式 */
.navbar {
  width: 100%;
  background-color: #555;
  overflow: auto;
}
/* 向左导航 */
.navbar a {
  float: left;
  padding: 12px;
  color: white;
  text-decoration: none;
  font-size: 17px;
}
/* 鼠标悬停导航栏链接 */
.navbar a:hover {
  background-color: #000;
}
/* Current/active 导航栏链接 */
.active {
  background-color: #04AA6D;
}
/* 添加响应性-将在小于500像素的屏幕上自动垂直显示导航栏,而不是水平显示 */
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
  }
}
              
            
!

JS

              
                
              
            
!
999px

Console