私は、画面の中央にヘッダーがあるモーダルを持っています。 そのヘッダーには、タイトルとそれを閉じるボタンが含まれている必要があります。ヘッダー内のすべてのテキストを垂直方向に中央揃えされている必要がありフレックスボックス:2つのdivを垂直に中心にします
- :
-------------------------------- | (close)| | Text | | | --------------------------------
だから基本的に私は2つの要件があります。
- 「(閉じる)」をコーナーのヘッダーの近くに配置できるようにします。
今私はすべて垂直方向の中央が、私はミリアンペアパイルのヘッダ内に置くの要素を持っている:
--------------------------------
| |
| Text |
| (close) |
| |
--------------------------------
.modal-payment__wrapper { // <- this is the whole box
max-width: 50%;
width: 500px;
height: 200px;
background: white;
font-family: 'Lato', 'sans-serif';
}
.modal__header { // <- this is the header
display: flex;
justify-content: center;
flex-direction: column;
width: 100%;
height: 50px;
background-color: black;
color: white;
font-size: 16px;
padding-left: 20px;
}
.modal__header__title { // <- this is "text"
text-transform: uppercase;
letter-spacing: 2px;
font-size: 1.7em;
padding: 10px;
flex-grow: 0;
flex-srhink: 0;
flex-basis: auto;
align-self: auto;
}
<div class="modal-payment__background">
<div class="modal-payment__wrapper">
<div class="modal__header">
<div>
Text
</div>
<div class="modal__header__x"
@click="closeModal">
x
</div>
</div>
<div class="modal__body">
私は何をしないのですか?
はこれを試してみてくださいhttp://jsfiddle.net/Lt8bct5x/1/ – Super
'フレックスdirection'は、あなたがそれらの要素が互いに隣に並ぶ必要row'if'でなければなりません。次に、 'align-items'を使って垂直方向に中心を合わせます。 – UncaughtTypeError