天地左右でセンタリングさせる方法

最終更新日

html

<div class="center">
 <p>天地左右<br>中央です</p>
</div>

css

.center{
	width:300px;
	height:300px;
	position:relative;
	border:4px solid #ccc;
	text-align:center;
}
.center p{
	margin: 0 auto;
	padding: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

結果

天地左右
中央です