「戻る」と「確認」ボタンを隣り合わせて表示します。ご覧のとおり、私はディスプレイを実行しようとしました:インラインブロックですが、動作しませんでした。私はいくつかの矛盾するコードがあるかもしれないと思うが、私はそれがどこであるかわからない。これはばかな質問かもしれませんが、私と一緒にしてください。ここで隣の位置ボタン
は私のコードです:
.form__confirmation {
padding: 0px 55px;
}
.form__confirmation2 {
padding: 0px 55px;
}
button {
font-size: 12px;
text-transform: uppercase;
font-weight: 700;
letter-spacing: 1px;
background-color: #011f4b;
border: 1px solid #DADDE8;
color: #fff;
padding: 18px;
border-radius: 5px;
outline: none;
-webkit-transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
left: 350px;
margin-bottom: 20px;
display: inline-block;
}
button:hover {
background-color: #1293e1;
}
button:active {
background-color: #1083c8;
}
<div class="form__confirmation" type="submit" name="submit">
<button>Confirm Information</button>
</div>
<div class="form__confirmation2">
<button>Back</button>
</div>
あなたは'ディスプレイを宣言する必要があります。 – UncaughtTypeError