制作更新进度面板中的中心进度、面板、中心

2023-09-10 19:22:45 作者:只在乎╯在乎自己的人

我有关于更新进度面板的查询。 我想在我的屏幕中间,以适应更新进度面板! 任何人都可以建议我,是什么使得这个想法就这样??

I have a query regarding update progress panel. I want to fit update progress panel in the middle of my screen! Can anyone suggest me, what is the idea of making it so??

推荐答案

您可以做到这一点通过使用CSS

You can do that by using css

<style type="text/css" media="screen">
/* commented backslash hack for ie5mac \*/ 
html, body{height:100%;} 
/* end hack */
.CenterPB{
position: absolute;
left: 50%;
top: 50%;
margin-top: -30px; /* make this half your image/element height */
margin-left: -30px; /* make this half your image/element width */
}
</style>

和你在DIV进度条

<div class="CenterPB" style="height:60px;width:60px;" >Progress bar here</div>

参考: http://www.sitepoint.com/forums/1243542-post9.html HTTP://www.search-this。 COM / 2008/05/15 /易垂直居中与 - CSS /

reference: http://www.sitepoint.com/forums/1243542-post9.html http://www.search-this.com/2008/05/15/easy-vertical-centering-with-css/