-6ren">
gpt4 book ai didi

css - 如何在固定高度的 div 中保持漂亮的 Logo ?

转载 作者:太空宇宙 更新时间:2023-11-03 20:40:00 25 4
gpt4 key购买 nike

我想要一个漂亮的盒子并且那个盒子里有一个漂亮的 Logo ( Logo 仅供示例)。

但我不知道该怎么做。

我的图片标签是这样的

<img class="col-sm-12 pull-right" src="/marketing_materials/{{$marketing_material->id}}/download/thumb_path" alt="" />

如果我包含 width="200" height="200"<img>标记,我的 View 将如下所示。

enter image description here

我有一个漂亮的盒子,但丑陋的标志(拉伸(stretch))。

否则,如果我包含 width="200"仅在 <img>标记,我的 View 将如下所示。

enter image description here

我有一个漂亮的标志,但丑陋的盒子(没有排成一行)。

无论哪种方式,我的选择都会搞砸我的观点。 :(

最佳答案

您可以将图像放在 200x200 的 div 中,并将图像居中(但不要拉伸(stretch)),如下所示:

.imgbox{
border:solid 4px grey;
border-radius:5px;
width:200px;
height:200px;
display: table-cell; vertical-align: middle
}
<div class="imgbox">
<img src="http://img3.wikia.nocookie.net/__cb20100520131746/logopedia/images/5/5c/Google_logo.png">
</div>

关于css - 如何在固定高度的 div 中保持漂亮的 Logo ?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27364068/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com