কীভাবে আপনি একটি ধারণাগুলির অভ্যন্তরে একটি চিত্র সারিবদ্ধ করতে পারেন div
?
উদাহরণ
আমার উদাহরণে, আমাকে " <img>
এর <div>
সাথে উল্লম্বভাবে কেন্দ্রটি স্থাপন করতে হবে class ="frame
:
<div class="frame" style="height: 25px;">
<img src="http://jsfiddle.net/img/logo.png" />
</div>
.frame
এর উচ্চতা স্থির এবং চিত্রটির উচ্চতা অজানা। আমি .frame
যদি নতুন সমাধান যুক্ত করতে পারি তবে এটিই একমাত্র সমাধান। আমি ইন্টারনেট এক্সপ্লোরার 7 এবং এর পরে ওয়েবকিট, গেকোতে এটি করার চেষ্টা করছি।
এখানে jsfiddle দেখুন ।
.frame {
height: 25px; /* Equals maximum image height */
line-height: 25px;
width: 160px;
border: 1px solid red;
text-align: center;
margin: 1em 0;
}
img {
background: #3A6F9A;
vertical-align: middle;
max-height: 25px;
max-width: 160px;
}
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=250 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=25 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=23 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=21 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=19 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=17 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=15 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=13 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=11 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=9 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=7 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=5 />
</div>
<div class=frame>
<img src="http://jsfiddle.net/img/logo.png" height=3 />
</div>