<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.table {
display: table;
width: 100%;
height: 100%;
position: absolute;
}
.table-cell {
display: table-cell;
text-align: center;
vertical-align: middle;
width: auto;
height: auto;
z-index: 100;
}
</style>
</head>
<body>
<div class="table">
<div class="table-cell">
<hr />
<h3>Some text</h3>
<hr />
</div>
</div>
</body>
</html>