0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

個人

Last updated at Posted at 2025-09-24

.name-input {
display: grid; /* または flex でもOK /
grid-template-columns: 1fr 1fr; /
2等分で並べる /
gap: 8px; /
入力欄の間の余白 */
}

.name-input input {
width: 100%; /* 親の 1fr に合わせて同じ幅になる */
box-sizing: border-box;
}

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?