I have a list of image开发者_如何学编程s in an html table and need to overlap a small icon on each image. How can we do this using z index and positioning?
.under {
position: absolute;
left: 0px;
top: 0px;
z-index: -1;
}
.over {
position: absolute;
left: 40px;
top: 10px;
z-index: -1;
}
<img src="https://tafttest.com/184x46.png" width="184" height="46" class="under" />
<img src="https://tafttest.com/100x84.png" width="100" height="84" class="over" />
The element you want to be on top needs to have a higher z-index
So the small icon would have a z-index of 2 and the images would have a z-index of 1
Example:
.icon {
z-index: 2;
position: relative;
left: 30px;
top: 30px;
}
.images {
z-index: 1;
}
You could use position:relative
and set right:30px
, bottom:30px
, that would shift it up and left by 30 pixels.
CSS:
.icon{
position:relative;
right:30px;
bottom:30px;
}
Here is an guide about you can use z-index and here https://developer.mozilla.org/en/understanding_css_z-index
an article about positioning http://www.tizag.com/cssT/position.php
精彩评论