box-sizing: Content

by matiasfh

HTML

<section>
  <div class="box"></div>
</section>

CSS

section {
  width: 200px;
}
.box {
  width: 100%;
  padding: 20px;
  border: 4px solid green;
  height: 0px;
  box-sizing: border-box;
}