ホームページ >ウェブフロントエンド >CSSチュートリアル >CSS を使用してテキストを画像の中央に配置するにはどうすればよいですか?
CSS を使用して画像上でテキストを中央揃えにする
この記事では、CSS を使用して画像上でテキストを中央揃えにする手法について説明します。
簡単な解決策
基本的なことを実現するには画像の中央にテキストを配置するには、次の手順を実行します。
例:
<div class="image"> <img src="sample.png"/> <div class="text"> <h2>Some text</h2> </div> </div>
.image { position: relative; } .text { position: absolute; left: 0; width: 100%; margin: 0 auto; }
z-Index の使用
テキストが画像の上に表示される場合は、画像よりも高い値の Z-index をテキスト要素に適用します。 z-index.
例:
<div>
#container { height: 400px; width: 400px; position: relative; } #image { position: absolute; left: 0; top: 0; } #text { z-index: 100; position: absolute; color: white; font-size: 24px; font-weight: bold; left: 150px; top: 350px; }
以上がCSS を使用してテキストを画像の中央に配置するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。