Skip to content

Commit

Permalink
Position demo: Updated sizes of elements.
Browse files Browse the repository at this point in the history
  • Loading branch information
scottgonzalez committed Sep 16, 2011
1 parent a60a99e commit 8274f08
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions demos/position/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,29 @@
<style>
#parent {
width: 60%;
height: 40px;
margin: 10px auto;
padding: 5px;
border: 1px solid #777;
background-color: #fbca93;
text-align: center;
}
.positionable {
width: 75px;
height: 75px;
position: absolute;
display: block;
right: 0;
bottom: 0;
background-color: #bcd5e6;
text-align: center;
}
#positionable1 {
width: 75px;
height: 75px;
}
#positionable2 {
width: 120px;
height: 40px;
}
.ui-flipped-top {
border-top: 3px solid #000000;
}
Expand Down Expand Up @@ -93,13 +100,13 @@
</p>
</div>

<div class="positionable">
<div class="positionable" id="positionable1">
<p>
to position
</p>
</div>

<div class="positionable" style="width:120px; height: 40px;">
<div class="positionable" id="positionable2">
<p>
to position 2
</p>
Expand Down

0 comments on commit 8274f08

Please sign in to comment.