উল্লম্বভাবে এবং অনুভূমিকভাবে একটি উপাদানকে CSS দিয়ে কেন্দ্রে রাখতে, কোডটি নিম্নরূপ -
উদাহরণ
<!DOCTYPE html> <html> <head> <style> body { font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif; } .centered { display: flex; justify-content: center; align-items: center; height: 200px; border: 3px solid rgb(0, 70, 128); } </style> </head> <body> <h1>Centering Example</h1> <div class="centered"> <h2>This text is centered vertically and horizontally both</h2> </div> </body> </html>
আউটপুট
উপরের কোডটি নিম্নলিখিত আউটপুট −
তৈরি করবে