Skip to content

Commit

Permalink
Progressbar demo (label): Use absolute positioning for the label. Fix…
Browse files Browse the repository at this point in the history
…es #9163 - Progressbar demo: Incorrect presentation with progressbar label in IE9.

(cherry picked from commit 8bf5bc8)
  • Loading branch information
scottgonzalez committed Apr 17, 2013
1 parent fb6adc7 commit d1605e6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions demos/progressbar/label.html
Expand Up @@ -10,10 +10,13 @@
<script src="../../ui/jquery.ui.progressbar.js"></script>
<link rel="stylesheet" href="../demos.css">
<style>
.ui-progressbar {
position: relative;
}
.progress-label {
float: left;
margin-left: 50%;
margin-top: 5px;
position: absolute;
left: 50%;
top: 4px;
font-weight: bold;
text-shadow: 1px 1px 0 #fff;
}
Expand Down

0 comments on commit d1605e6

Please sign in to comment.