How can i center my content ?
MY CODE :- --------------------------------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; } Now what i want ir, to center my text in the content box, I tried adding padding on top but that moves the whole content box down so i tried text-alignt:center but it only centers the text from left to center but it does not move the text from top to mid bottom. How Can I Do That?