.name-input {
display: grid; /* または flex でもOK /
grid-template-columns: 1fr 1fr; / 2等分で並べる /
gap: 8px; / 入力欄の間の余白 */
}
.name-input input {
width: 100%; /* 親の 1fr に合わせて同じ幅になる */
box-sizing: border-box;
}
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
.name-input {
display: grid; /* または flex でもOK /
grid-template-columns: 1fr 1fr; / 2等分で並べる /
gap: 8px; / 入力欄の間の余白 */
}
.name-input input {
width: 100%; /* 親の 1fr に合わせて同じ幅になる */
box-sizing: border-box;
}
Register as a new user and use Qiita more conveniently
Go to list of users who liked