डिव के केंद्र में सामग्री या छवि प्रदर्शित करने के लिए कई ट्रिक्स हैं । कुछ उत्तर वास्तव में अच्छे हैं और मैं इनसे भी पूरी तरह सहमत हूँ।
सीएसएस में पूर्ण क्षैतिज और ऊर्ध्वाधर केंद्र
http://www.css-jquery-design.com/2013/12/css-techniques-absolute-horizontal-and-vertical-centering-in-css/
उदाहरणों के साथ 10 से अधिक तकनीकें हैं । अब यह आपके ऊपर है कि आप किसे पसंद करते हैं।
कोई शक नहीं, display:table; display:table-Cell
एक बेहतर चाल है।
कुछ अच्छी तरकीबें निम्नलिखित हैं:
ट्रिक 1 - उपयोग करके display:table; display:table-cell
एचटीएमएल
<div class="Center-Container is-Table">
<div class="Table-Cell">
<div class="Center-Block">
CONTENT
</div>
</div>
</div>
सीएसएस कोड
.Center-Container.is-Table { display: table; }
.is-Table .Table-Cell {
display: table-cell;
vertical-align: middle;
}
.is-Table .Center-Block {
width: 50%;
margin: 0 auto;
}
ट्रिक 2 - उपयोग करके display:inline-block
एचटीएमएल
<div class="Center-Container is-Inline">
<div class="Center-Block">
CONTENT
</div>
</div>
सीएसएस कोड
.Center-Container.is-Inline {
text-align: center;
overflow: auto;
}
.Center-Container.is-Inline:after,
.is-Inline .Center-Block {
display: inline-block;
vertical-align: middle;
}
.Center-Container.is-Inline:after {
content: '';
height: 100%;
margin-left: -0.25em; /* To offset spacing. May vary by font */
}
.is-Inline .Center-Block {
max-width: 99%; /* Prevents issues with long content causes the content block to be pushed to the top */
/* max-width: calc(100% - 0.25em) /* Only for Internet Explorer 9+ */
}
ट्रिक 3 - उपयोग करके position:relative;position:absolute
<div style="position: relative; background: #ddd; border: 1px solid #ddd; height: 250px;">
<div style="width: 50%; height: 60%; overflow: auto; margin: auto; position: absolute; top: 0; left: 0; bottom: 0; right: 0; background: #ccc; text-align: center;">
<h4>ABSOLUTE CENTER, <br/>
WITHIN CONTAINER.</h4>
<p>This box is absolutely centered, horizontally and vertically, within its container</p>
</div>
</div>