#whole{
width: 800px;
margin: 0 auto 0 auto;
display: table;
}
#mid{
width: 800px;
height:500px;
background-color:blue;
padding: 60px 0px;
text-align : center;
vertical-align : middle;
}
#bot{
clear: left;
width: 800px;
height: 60px;
background-color: yellow;
display: table-cell;
}
<body>
<div id="whole">
<div id="mid">
</div>
<div id="bot">
<jsp:include page="quiz.jsp"/>
</div>
</div>
</body>
I want to align the two div
elements vertically on the web page screen.
I want to bring another jsp file and show it to div
below, but I can't sort if css is wrong...
Help me
The display:table
property has just been used, which has complicated the situation. (<table>
The display: table
property is also difficult to use, just as the tag is a bit tricky to use.)
If you're just stacking it down in one container, just give me display: block
. Like this.
© 2024 OneMinuteCode. All rights reserved.