PNLdev
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
En
English
فارسی
En
English
فارسی
Tutorial
Front-end
HTML
reference
CSS
reference
JavaScript
reference
Run
<!DOCTYPE html> <html> <head> <style> #parentDIV{ position: relative; width: 70%; height: 350px; border: solid green 3px; } #myDIV{ position: absolute; background-color: lightgreen; inset: 55px; } </style> </head> <body> <h1>inset property example</h1> <div id="parentDIV"> <div id="myDIV">This DIV has a size defined by the distance of 55 pixels to the parent DIV element, on all four sides.</div> </div> </body> </html>