c# - Making Update Progress Panel in the center -
i have query regarding update progress panel. want fit update progress panel in middle of screen! can suggest me, idea of making so??
you can using css
<style type="text/css" media="screen"> /* commented backslash hack ie5mac \*/ html, body{height:100%;} /* end hack */ .centerpb{ position: absolute; left: 50%; top: 50%; margin-top: -30px; /* make half image/element height */ margin-left: -30px; /* make half image/element width */ } </style>
and have progress bar in div
<div class="centerpb" style="height:60px;width:60px;" >progress bar here</div>
reference:
http://www.sitepoint.com/forums/1243542-post9.html
http://www.search-this.com/2008/05/15/easy-vertical-centering-with-css/
Comments
Post a Comment