Z-index

Z-index In HTML5, there is a layering of elements in which different visusal contents can be layered one over the other using CSS For this to accomplish, you need to use the z-index property and an integer(positive or negative) depending on which layer you should position it over or under other items.

Example: If you want an image to be layered over a div tag ,you need trher following CSS code:
div {
z-index : 0
}
img {
z-index : 1
}

Comments

Popular posts from this blog

Parallel Database design, query processing

Laravel | PHP | Basics | Part 2

Apache Hadoop | Running MapReduce Jobs