Problem with padding
Hi, I have almost completed my CSS but still i think i lack of CSS knowledge. (sorry for bad grammar) I made a simple box with html and css, the problem I am facing is when i add padding on top inside the box it automatically adds padding of same px on bottom also and i cannot remove it. How can i fix this ? My Code It: --------------------------------HTML--------------------------------- <!DOCTYPE html> <html> <head> <title>Page Title</title> </head> <body> <p class="clip">Background-Clip</p> </body> </html> --------------------------------CSS----------------------------------- body { padding:0px; margin: 0px; } .clip { color: black; width: 150; height: 100; border: 2px solid black; padding-top: 50px; }