mk-webwork codenote
<section>
  <p>テキスト…</p>
  <div class="fullwidth">
    <img src="image.jpg" alt="" />
  </div>
  <p>テキスト…</p>
</section>
section {
  max-width: 600px;
  margin: auto;
}
.fullwidth {
  margin: 0 calc(50% - 50vw);  /* ← */
}
img {
  width: 100%;
}
← もどる