幅・高さ

width

幅を指定する

valuedescription
100pxpxで幅を指定する
20remremで幅を指定する
100%%で幅を指定する

Demo

100%
480px
240px
<div class="box box-1">100%</div>
<div class="box box-2">480px</div>
<div class="box box-3">240px</div>
.box-1 {
  width: 100%;
  background: rgb(212, 169, 25);
}
.box-2 {
  width: 480px;
  background: rgb(14, 165, 233);
}
.box-3 {
  width: 240px;
  background: rgb(14, 165, 233);
}
.box-4 {
  width: 30rem;
  background: rgb(149, 26, 197);
}
.box-5 {
  width: 15rem;
  background: rgb(149, 26, 197);
}

.box {
  border-radius: 12px;
  color: white;
  font-family: monospace;
  font-weight: 700;
  display: flex;
  padding: 8px 16px;
  margin-bottom: 8px;
}

.wrapper {
  display: flex;
  flex-direction: column;
}

概要

要素の幅を指定します。px, rem, %等で指定します。

関連

参照