Logo

Logo

テキストを下揃えにする方法

テキストを下揃えにする方法

Division: CSS

Subject: 位置関係

CSSでテキストの位置を親要素の下部に下揃え(下寄せ)にする方法を紹介。 下段左寄せ、下段中央寄せ、下段右寄せのパターンのサンプルコードあり。

テキスト位置を下揃えにする

<div class="container">
	<p class="bottom-left">Bottom Left</p>
	<p class="bottom-center">Bottom Center</p>
	<p class="bottom-right">Bottom Right</p>
</div>
 
.container {
	position: relative;
	width: 100%;
	height: 200px;
	background: #000;
}

.container p {
	color: #FFF;
	padding: 0 8px;
	margin: 0;
}

.bottom-left {
	position: absolute;
	bottom: 0;
	left: 0;
}

.bottom-center {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.bottom-right {
	position: absolute;
	bottom: 0;
	right: 0;
}
 

参考サイト

類似記事