<!DOCTYPE html>
<html>
<head>
<title>CSS Center Paragraph</title>
<style>
.center {
line-height: 250px; /* Same as height */
height: 250px;
border: 2px solid red;
text-align: center;
}
.center p {
display: inline-block;
line-height: normal;
vertical-align: middle;
font-size:30px;
}
</style>
</head>
<body>
<div class="center">
<p>I am at the center of the box <br> what you think !</p>
</div>
</body>
</html>