TutorialKart
index.html
►
Run
Reset
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <style> p { border: 1px solid black; margin: 10px; width: 80px; } #p1 { padding-bottom: 20px; } #p2 { padding-bottom: 2cm; } #p3 { padding-bottom: 1in; } #p4 { padding-bottom: 4ex; } #p5 { padding-bottom: 4rem; } </style> </head> <body> <p id="p1">Hello World</p> <p id="p2">Hello World</p> <p id="p3">Hello World</p> <p id="p4">Hello World</p> <p id="p5">Hello World</p> </body> </html>