HTML CSS examples for CSS Layout:Absolute Position
Absolute positioned within parent
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> #container_front {<!-- ww w.java 2 s .c o m--> position:relative; width:41%; min-height:141px; margin-left:auto; margin-right:auto; border:2px solid Chartreuse; } #front_like { position:absolute; width:26%; height:26%; left:76%; bottom:0; background-color:yellow; } </style> </head> <body> <div id="container_front"> <div id="front_like"></div> </div> </body> </html>