I'm trying to use CSS to align two images, one in the upper right position and the other in the lower right position. Can you help me with this?
Below is the HTML markup:
<th class="X" scope="col">
Time
<input id="ORAAsc" class="up" type="image" style="border-width:0px;" src="" name="ctl00$ContentPlaceHolder1$GridView1$ctl02$ORAAsc">
<input id="Desc" class="down" type="image" style="border-width:0px;" src="" name="ctl00$ContentPlaceHolder1$GridView1$ctl02$ORADesc">
</th>
And here is the corresponding CSS:
.X {
height:33px;
background-color:#DEDEDD;
width:75px;
bottom:0;
top:0;
left:0;
right:0;
margin-top:20px;
margin-bottom:20px;
margin-right:80px;
margin-left:80px;
}
.up {
/* Code to align image in upper right position */
}
.down {
/* Code to align image in lower right position */
}
Any help on how to position the images would be greatly appreciated. Thank you for your time.