ボックスの幅を可変にしてみてはどうでしょうか。
ウィンドウがどんなサイズになっても段落ちしなくなりますよ。
レイアウトについてはsadaさんと同じくflexboxを使用。
html
1<div class="wrapper">
2 <div class="box1">
3 </div>
4 <div class="box2">
5 </div>
6</div>
css
1.wrapper {
2 display: flex;
3 justify-content: space-around;
4}
5
6.box1,
7.box2 {
8 width: 40%;
9 height: 100px;
10 background-color: silver;
11}
デモ:codepen
max-widthで最大幅を指定すればボックスが大きくなりすぎるのを防ぐこともできます。
css
1.wrapper {
2 display: flex;
3 justify-content: space-around;
4}
5
6.box1,
7.box2 {
8 width: 40%;
9 max-width: 400px; /*最大幅を指定*/
10 height: 100px;
11 background-color: silver;
12}
デモ:codepen
【参考】
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/09/30 13:52
2020/09/30 14:00
退会済みユーザー
2020/09/30 23:16