gpt4 book ai didi

html - 固定高度的轮廓框并保持响应

转载 作者:太空宇宙 更新时间:2023-11-03 22:28:56 28 4
gpt4 key购买 nike

我需要从 gentelella 模板中设置这些元素的样式: https://colorlib.com/polygon/gentelella/contacts.html

这是我的实现

enter image description here

<div class="col-md-4 col-sm-4  col-xs-12 profile_details">
<div class="well profile_view">
<div class="col-sm-12 col-xs-12">
<div class="crop col-md-4 col-sm-12 col-xs-12 text-center ">
<img src= "https://media-cdn.tripadvisor.com/media/photo-s/0d/bf/07/9b/post-card-view.jpg" alt="" class="img-icon-template img-fluid ">
</div>
<div class=" col-md-8 col-sm-8 col-xs-12">
<div class="">
<h4 class="brief titolo_template"><i>TITLE</i></h4>
<div><i class="fa fa-user"><strong> user XXX </i> </div>
<p class="descr_p"><i class="fa fa-file-text-o"> <strong> descr: </strong> </i>something</p>
</div>
</div>
</div>
<div class="col-xs-12 bottom text-center">
<div class="col-xs-12 col-sm-12 emphasis text-left">
<p class="">
<a>relase date </a><i>dd/mm/aaaaa @endif</i>
</p>
<div class="col-md-6 col-sm6">
<a class="btn-block btn-success btn-xs text-center"
role="button" id="btnT2"
href="/templateGraphic/idxxx"
<i class="fa fa-sort-amount-asc "></i>view tamplate
</a>
</div>
<div class="col-md-6 col-sm-6">
<a class="btn-block btn-info btn-xs text-center"
role="button" id="btnT1"
href="alo/oo"
class="btn btn-info btn-xs">
<i class="fa fa-comments-o"></i> get replies
</a>
</div>
</div>
</div>
</div>
</div>

正如你所看到的,没有固定的高度,如果描述很长,比如最后一个盒子,盒子会越来越大。

问题是如果修复容器的最大高度将不起作用,对于内部的东西也是如此,因为它使得所有响应规则和媒体查询之后都不起作用。

我找到的唯一解决方案是在 <p> 中剪切文本与

.descr_p{
max-height: 90px;
text-overflow: ellipsis;
/* white-space: nowrap; */
overflow: hidden;
}

但是如果取消注释 white space: nowrap 会发生这样的困惑: enter image description here

所以问题是 2 :)哪一个是固定最大尺寸并保持整个事物响应的最佳方式。我怎样才能使“空白:nowrap”工作;

如果我问了一些愚蠢的问题,我深表歉意,但我是 CSS 样式方面的新手。

最佳答案

您需要根据需要在 descr_p 中应用 max-width 属性。 ma​​x-height 将不起作用。

.descr_p{
max-width: 105px;
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}

此外,您还可以使用flexbox 来设计您的布局。届时您无需担心文本的大小。

关于html - 固定高度的轮廓框并保持响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49628405/

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