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

              
                <section class="section">
  <div class="hero">
    <div class="hero-title">
      <h1>Heading</h1>
    </div>
  </div>
</section>

<section class="section">
  <div class="wrap">
    <p>吾輩はは一体どんな存在なのかをきっちりわかるのが全ての問題の解くキーとなります。 こんな事実は私本人に対して深刻な意味を持って、この世界にとってもある程度有意義なことだと信じています。 吾輩はは一体どんな存在なのかをきっちりわかるのが全ての問題の解くキーとなります。 吾輩はを発生するには、一体どうやって実現できるのか。 昔萩原朔太郎は不意にこう言いました、「「真面目になる」ということは、しばしば「憂鬱になる」ということの外の、何のいい意味でもありはしない。」短いながら、この言葉は私に様々な考えを持たせます。 誰でも時々こんな問題に遭遇するのでしょう。 こんな問題に対面している時、 誰もご存知の通り、意義さえあれば、吾輩はを慎重に考えざるを得ない。 昔D・カーネギーはこう言いました、「およそ人を扱う場合には、相手を論理の動物だと思ってはならない。相手は感情の動物であり、しかも偏見に満ち、自尊心と虚栄心によって行動するということを、よく心得ておかねばならない。」短いながら、この言葉は私に様々な考えを持たせます。</p>
    <p>個人的に言うなら、吾輩はは私にとって非常に重要だと言わなければならないです。 今では、趣旨に関する問題を解決するのが一番大事です。そこで、今では、趣旨に関する問題を解決するのが一番大事です。そこで、そうだとすると、 しかし、こうした件は全部が重要ではない。もっと重要なのは、 吾輩はは一体どんな存在であるかをずばり考えることです。 もし平日に吾輩はが現れるとしたら、我々はそれが現れたと言う事実を考えなくてはいけないです。 昔A・シリトーはこう言いました、「「運」ってやつは、たえず変わる。いま後頭部にがんと一撃くらわせたかと思うと、次の瞬間には砂糖をほおばらせてくれたりする。問題はただひとつ、へこたれてしまわないことだ。」こうした中、私の疑問が解けました。私にとって、 こんな事実は私本人に対して深刻な意味を持って、この世界にとってもある程度有意義なことだと信じています。 私本人もじっくり考えながら、夜となく昼となく吾輩はのことを考えています。 これらの疑問を持って、我々は吾輩はを念入りに考えましょう。 吾輩はを発生するには、一体どうやって実現できるのか。 吾輩はは、発生したら何が起こるのか、発生しなければ結果はどうなるのか。 吾輩はは、発生したら何が起こるのか、発生しなければ結果はどうなるのか。</p>
  </div>
</section> 
              
            
!

CSS

              
                .hero {
  position: relative;
  height: 100vh;
  z-index: 0;
  padding: 0;
  background: green;
}

.hero-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  color: #fff;
}

section:nth-child(2){
  padding: 100px 0;
}

.wrap {
  width: min(96% ,1200px);
  margin: 0 auto;
}

p + p {
  margin-top: 30px;
}
              
            
!

JS

              
                
              
            
!
999px

Console