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

              
                <html lang=“ja”>
<head>
    <meta charset=“UFT-8”>
    <title>border-bottom 使い方</title>
    <link rel="stylesheet" href="style.css">
</head>
<body>
    <h2>border-bottomの使い方</h2>
    <p><spna class="border-bottom1">2pxの一重下線(赤)</span></p>
    <p><spna class="border-bottom2">4pxの二重下線(青)</span></p>
    <p><spna class="border-bottom3">6pxの点線下線(緑)</span></p>
    <p><spna class="border-bottom4">8pxの破線下線(橙)</span></p>
</body>
</html>
              
            
!

CSS

              
                /* 一重線の下線 */
.border-bottom1 {
    border-bottom:solid 2px red
}
/* 二重線の下線 */
.border-bottom2 {
    border-bottom:double 4px blue
}
/* 点線の下線 */
.border-bottom3 {
    border-bottom:dotted 6px green
}
/* 破線の下線 */
.border-bottom4 {
    border-bottom:dashed 8px orange
}

              
            
!

JS

              
                
              
            
!
999px

Console