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

              
                <h1>text-decorationで作るアンダーライン</h1>

<h2>色の変更(text-decoration-color)</h2>
<p>・指定なし<span class="code">(text-decoration-color: currentcolor;)</span></p><p class="example">テキストに<span class="under-line">アンダーライン</span>を引きます。</p>
<p>・色名で指定<span class="code">text-decoration-color: blue;</span></p><p class="example">テキストに<span class="under-line color-name">アンダーライン</span>を引きます。</p>
<p>・カラーコードで指定<span class="code">text-decoration-color: #F26A44;</span></p><p class="example">テキストに<span class="under-line hex">アンダーライン</span>を引きます。</p>
<p>・rgbaで指定<span class="code">text-decoration-color: rgba(46, 149, 152, .4);</span></p><p class="example">テキストに<span class="under-line rgba">アンダーライン</span>を引きます。</p>

<h2>太さの変更(text-decoration-thickness)</h2>
<p>・指定なし<span class="code">(text-decoration-thickness: auto;)</span></p><p class="example">テキストに<span class="under-line">アンダーライン</span>を引きます。</p>
<p>・pxで指定<span class="code">text-decoration-thickness: 5px;</span></p><p class="example">テキストに<span class="under-line thickness-px">アンダーライン</span>を引きます。</p>
<p>・emで指定<span class="code">text-decoration-thickness: .2em;</span></p><p class="example">テキストに<span class="under-line thickness-em">アンダーライン</span>を引きます。</p>

<h2>位置の調整(text-underline-offset)</h2>
<p>・指定なし<span class="code">(text-underline-offset: auto;)</span></p><p class="example">テキストに<span class="under-line">アンダーライン</span>を引きます。</p>
<p>・pxで指定<span class="code">text-underline-offset: 4px;</span></p><p class="example">テキストに<span class="under-line offset-px">アンダーライン</span>を引きます。</p>
<p>・emで指定<span class="code">text-underline-offset: .1em;</span></p><p class="example">テキストに<span class="under-line offset-em">アンダーライン</span>を引きます。</p>

<h2>スタイルの変更(text-decoration-style)</h2>
<p>・指定なし<span class="code">(text-decoration-style: solid;)</span></p><p class="example">テキストに<span class="under-line">アンダーライン</span>を引きます。</p>
<p>・double<span class="code">text-decoration-style: double;</span></p><p class="example">テキストに<span class="under-line double">アンダーライン</span>を引きます。</p>
<p>・dotted<span class="code">text-decoration-style: dotted;</span></p><p class="example">テキストに<span class="under-line dotted">アンダーライン</span>を引きます。</p>
<p>・dashed<span class="code">text-decoration-style: dashed;</span></p><p class="example">テキストに<span class="under-line dashed">アンダーライン</span>を引きます。</p>
<p>・wavy<span class="code">text-decoration-style: wavy;</span></p><p class="example">テキストに<span class="under-line wavy">アンダーライン</span>を引きます。</p>


<h2>その他:text-decoration-skip-ink</h2>
<p>・指定なし<span class="code">(text-decoration-skip-ink: auto;)</span></p><p class="example">一部の文字では<span class="under-line">このgjqypのように</span>アンダーラインが途切れます。</p>
<p>・"none"を指定<span class="code">text-decoration-skip-ink: none;</span></p><p class="example">どのような文字でも<span class="under-line skip-ink-none">このgjqypのように</span>アンダーラインが途切れません。</p>
              
            
!

CSS

              
                body {
  padding: 20px;
}

h2 {
  margin-top: 70px;
}

.code {
  margin-left: 5px;
  padding: 3px 6px;
  background: #ddd;
  color: #EC1B4B;
}

.example {
  margin-left: 40px;
}

.under-line {
   text-decoration-line: underline;
}

.color-name {
  text-decoration-color: blue;
}

.hex {
  text-decoration-color: #F26A44;
}

.rgba {
  text-decoration-color: rgba(46, 149, 152, .4);
}

.thickness-px {
  text-decoration-thickness: 5px;
}

.thickness-em {
  text-decoration-thickness: .2em;
}

.offset-px {
  text-underline-offset: 4px;
}

.offset-em {
  text-underline-offset: .1em;
}

.double {
  text-decoration-style: double;
}

.dotted {
  text-decoration-style: dotted;
}

.dashed {
  text-decoration-style: dashed;
}

.wavy {
  text-decoration-style: wavy;
}

.skip-ink-none {
  text-decoration-skip-ink: none;
}

              
            
!

JS

              
                
              
            
!
999px

Console