これは多くのバリエーションを試しましたが、うまく動作しませんでした。ここで最後の試みは、次のとおりです。CSS Flexで一列に中央揃えと右揃えを行う方法
HTMLで.parent {
display: flex;
//justify-content: center;
width: 600px;
background-color: yellow
}
.c {
//flex: 1 1 0;
//text-align: end;
margin-left: auto;
margin-right: auto;
background-color: cyan;
}
.e {
//flex: 1 1 0;
// text-align: end;
background-color: grey;
}
.bs {
background-color: green;
color: white;
width: 70px;
}
:
<div class="parent">
<div class="c">
<button class="bs">OK</button>
<button class="bs">Cancel</button>
</div>
<div class="e">
<button class="bs">Help</button>
</div>
</div>
私は「可視性:隠された」置くことによって、この問題を解決する方法を知っている左側のボタンをし、と正当化コンテンツを使用します私はCSSを使用してそれを行う方法を学びたい/知りたい。
アドバイスをいただきありがとうございます。