सीएसएस के साथ एक तत्व के पहलू अनुपात को बनाए रखने के लिए, कोड इस प्रकार है -
उदाहरण
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style> body{ font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; } .aspectContainer { background-color: rgb(191, 66, 216); position: relative; width: 100%; padding-top: 75%; } .aspectText { position: absolute; text-align: center; top: 0; left: 0; bottom: 0; right: 0; Text-align: center; font-size: 20px; color: white; } </style> </head> <body> <h1>Aspect ratio example</h1> <div class="aspectContainer"> <div class="aspectText">4:3 Aspect ratio</div> </div> <h2>Resize the window to see 4:3 aspect ratio in action</h2> </body> </html>
आउटपुट
उपरोक्त कोड निम्न आउटपुट उत्पन्न करेगा -
विंडो का आकार बदलने पर तत्व 4:3 के अनुपात में सिकुड़ जाएगा -