किसी तत्व को सीएसएस में लंबवत रूप से केन्द्रित करने के लिए, ऊपर और नीचे पैडिंग का उपयोग करें।
उदाहरण
आप किसी तत्व को केंद्र में रखने के लिए निम्न कोड चलाने का प्रयास कर सकते हैं
<!DOCTYPE html> <html> <head> <style> .center { padding: 50px 0; border: 2px solid blue; } </style> </head> <body> <h2>Center Vertically</h2> <p>In this example, we use the padding property to center the div element vertically:</p> <div class = "center"> <p>I am vertically centered.</p> </div> </body> </html>
आउटपुट