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>viewBoxの値がビューポートと同じ(width="400" height="200" viewBox="0 0 400 200")</h1>
<svg width="400" height="200" viewBox="0 0 400 200">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

<h1>viwBoxの値がビューポートの倍(width="400" height="200" ViewBox="0 0 800 400")</h1>
<svg width="400" height="200" viewBox="0 0 800 400">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

<h1>viwBoxの値がビューポートの半分(width="400" height="200" ViewBox="0 0 200 100")</h1>
<svg width="400" height="200" viewBox="0 0 200 100">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

<h1>viwBoxの値がビューポートの倍、かつ最小座標を指定(width="400" height="200" ViewBox="-50 -50 800 400")</h1>
<svg width="400" height="200" viewBox="-50 -50 800 400">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

<h1>widthだけ 半分 に(width="400" height="200" ViewBox="0 0 200 200")</h1>
<svg width="400" height="200" viewBox="0 0 200 200">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

<h1>heightだけ 半分 に(width="400" height="200" ViewBox="0 0 400 100")</h1>
<svg width="400" height="200" viewBox="0 0 400 100">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

<h1>widthだけ 倍 に(width="400" height="200" ViewBox="0 0 800 200")</h1>
<svg width="400" height="200" viewBox="0 0 800 200">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

<h1>heightだけ 倍 に(width="400" height="200" ViewBox="0 0 400 400")</h1>
<svg width="400" height="200" viewBox="0 0 400 400">
  <circle cx="0" cy="0"/>
  <polygon points="0,0 400,0 400,200 0,200"/>
</svg>

              
            
!

CSS

              
                svg{
  background: #f5f5f5;
}

h1{
  font-size: 16px;
}
circle{
  fill: #F44D61;
  r: 20;
}
polygon{
  fill:none;
  stroke: #F4AC56;
  stroke-width: 4;
}
              
            
!

JS

              
                
              
            
!
999px

Console