html position

by jason870509

HTML

<p style="font-size:2em;color:green; position: absolute; top:30px; left:60px">
This is a stand alone title
</p>
<div style="background:pink; width:98vw; height:58vh">
  <p>
    pink stuff
  </p>
</div>
<div style="top:20px;right;50px;background:yellow; width:98vw; height:38vh">
  <p style="position:absolute;left:40px; top: 20px">
    This is a positioned text.
  </p>
</div>

CSS

body {
  overflow: hidden
}