CSS Байршил
Run
index.html
<!DOCTYPE html> <html> <head> <style> .parent { position: relative; width: 300px; height: 150px; background: #e2e8f0; } .child { position: absolute; top: 10px; right: 10px; background: #2563eb; color: white; padding: 5px 10px; } </style> </head> <body> <div class="parent"> Эцэг элемент (relative) <div class="child">Хүү (absolute)</div> </div> </body> </html>