div要素の画像の上にテキストを配置したい。div要素の縦横のテキストを中央に揃える方法
これは私が試したものです:
CSS:
.container {
margin: 0 auto;
max-width: 1200;
}
.header {
width: 100%;
}
.ring {
max-width: 100%;
position: relative;
}
.flex_text {
position: absolute;
color: #B64547;
z-index: 100;
font-family: Poppins;
font-size: 30px;
text-align: center;
}
.cell img {
display: block;
}
HTML:
<div class="container">
<div class="grid">
<div class="cell">
<h4 class="flex_text">Brewing, get started!</h4>
<img src="img/Kaffe_1.jpg" alt="Ring1" class="ring">
</div>
これは明らかに、動作しませんでした。このウェブサイトは応答性が高いので、ソリューションは応答性にも影響するはずです。
私は周りを見回し、さまざまなことを試みましたが、うまく機能しませんでした。 わかりませんが、jqueryの解決策がありますか?親要素の 感謝:)
を支援) – empiric
https://www.w3.org/Style/Examples/007/center.en.html –
他の質問にはjqueryソリューションは必要ありません。 – oMiKeY