我尝试了不同的选项,以便在字段集内对齐元素,以便使用不同的方法将标题,文本和“了解更多”按钮保持在同一行。但结果仍然是负面的: Align result
这是我的代码:
fieldset {
height: 100%;
}
fieldset.scheduler-border {
border: 2px solid #efefef !important;
border-radius: 5px;
padding: 0 1.4em 1.4em 1.4em !important;
margin: 0 0 1.5em 0 !important;
-webkit-box-shadow: 0px 0px 0px 0px #000;
box-shadow: 0px 0px 0px 0px #000;
}
legend.scheduler-border {
font-size: 0.7em !important;
font-weight: bold !important;
text-align: center !important;
width:inherit; /* Or auto */
padding:0 10px; /* To give a bit of padding on the left and right */
border-bottom:none;
vertical-align: sub;
}
.btn-devices{
text-transform: none;
background-color: #e64232;
color: white;
}

<div class="col-md-4">
<fieldset class="scheduler-border">
<legend class="scheduler-border red">DEVICES</legend>
<h3>ALL DEVICES SUPORTED</h3>
<p class="desc-features">All our products are perfectly optimized for mobile, desktop and tablet.</p>
<button type="button" class="btn btn-danger btn-devices">Learn More</button>
</fieldset>
</div>
&#13;
我很感激任何可能的建议,因为我没有找到任何有关此主题的信息的帮助。
答案 0 :(得分:1)
正如Paulie_D在评论中提到的那样,没有方法可以解决这个问题,但是如果你能够定义最小高度,那么你可以做到这一点。为您的说明添加min-height:100px
。
答案 1 :(得分:0)
我认为你的意思是你的照片中心对齐。通过将text-align:center
添加到fieldset.scheduler-border
,您可以实现所需。
像这样:http://jsfiddle.net/txdbsmdh/1/
编辑:啊,我明白你的意思了。那么其他答案是正确的;那不是一个容易的&#34;做你需要的方式。最简单的解决方案是通过min-height
或height
或通过确保文本大小相同来明确定义按钮上方元素的高度。不幸的是,它不是一个完美的解决方案,也不是一个非常敏感的解决方案。我能想到的唯一一个响应式解决方案(我觉得你正在寻找)就是这样的:Make two parallel `<div>` colums the same height
答案 2 :(得分:0)
查看您的预期
<style type="text/css">
fieldset
{
height: 100%;
}
fieldset.scheduler-border {
border: 2px solid #efefef !important;
border-radius: 5px;
padding: 0 1.4em 1.4em 1.4em !important;
margin: 0 0 1.5em 0 !important;
-webkit-box-shadow: 0px 0px 0px 0px #000;
box-shadow: 0px 0px 0px 0px #000;
display:table;
}
legend.scheduler-border {
font-size: 0.7em !important;
font-weight: bold !important;
text-align: center !important;
width:inherit; /* Or auto */
padding:0 10px; /* To give a bit of padding on the left and right */
border-bottom:none;
vertical-align: sub;
}
.btn-devices{
text-transform: none;
background-color: #e64232;
color: white;
}
.aligndiv {
display: table-cell;
vertical-align: middle;
width: 250px;
text-align: center
}
</style>
<div class="col-md-4">
<fieldset class="scheduler-border">
<legend class="scheduler-border red">DEVICES</legend>
<div class="aligndiv">
<h3>ALL DEVICES SUPORTED</h3>
<p class="desc-features">All our products are perfectly optimized for mobile, desktop and tablet.</p>
<button type="button" class="btn btn-danger btn-devices">Learn More</button>
</div>
</fieldset>
</div>