i have following code i want the text in the div to come in the middle .
i know this is very easy question but i am getting problem in these type of questins please suggest me the what can i do to solve these kind of problems in future.
<!DOCTYPE html>
<html>
<head>
<style>
.transition-msg {
background-color:#000000;
font-size:20px;
height:624px;
color:#fff;
margin:0 auto;
position:absolute;
text-align:center;
top:6%;
width:1014px;
}
</style>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
</head>
<body>
<div style="display: block;" class="transition-msg" id="transition-msg">Entering rahuls Gib</div>
<script>
</script>
</body>
</html>
1 Answer