Skip to main content

Introduction

 You are welcome to "TEMATION" a portmanteau of tech and information.

Here, we blog on tech 

My love for tech birthed this blog.

Enjoy thrilling content.❤✌☺



#Gabriel Ogbu



Comments

Popular posts from this blog

Difference between relative positioning and absolute positioning in CSS

  Difference between Relative position and Absolute position in CSS If you are having difficulty understanding the difference between relative positioning and Absolute positioning in CSS, then this will help you understand it better. Let's dive in using practical example. All CSS element are in static position based on its current position in the flow unless we change its position. The top, right, bottom, left and z-index properties do not apply. Now Let's  create three boxes with html and CSS using the code below Result:                 Relative positioning Relative positioning places an element relative to its current position without changing the layout around it. Applying relative positioning on the code Result: It move the green box relative to its current position to 20px from the left and top without changing the layout around it. Thus, leaving a gap for the green box where it would have been had it not been position.   ...