Need to display Update Progress at the center of a Grid view placed in a Ajax Update Panel. Is there a way to place the Update progreass control at the center of the grid view (or else center of the page) with CSS (without using jQuery or Java Script)?

link|improve this question

We'll need to see some code, then we can better help you. Live examples are golden too :) – Kyle Sevenoaks Nov 18 '11 at 8:16
feedback

2 Answers

up vote 4 down vote accepted

Put the grid-view and update progress html within a wrapper div. Position div relatively and position the update progress absolutely at center.

See this jsfiddle that I have set up: http://jsfiddle.net/DDdyU/

key styles are

.wrapper
{
    position: relative;
}
.updateProgress
{
    position:absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-right: -20px;
}

negative margins are half size of update-progress.

link|improve this answer
Works nicely.. Thanks a lot. – Nalaka526 Nov 18 '11 at 8:45
feedback

Not with just pure CSS unless you absolutely position the UpdateProgess div in the middle of the GridView. I feel like jQuery would be cleaner if you can use it in your application.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.