gpt4 book ai didi

html - Bootstrap : How to center image in panel heading?

转载 作者:数据小太阳 更新时间:2023-10-29 08:14:32 24 4
gpt4 key购买 nike

我有一类“面板标题中心”,但面板中的图像没有居中。我怎样才能做到这一点?

<%= link_to 'Back', things_path %>

<div class='row'>
<div class='col-md-offset-2 col-md-8'>
<div class='panel panel-default'>
<div class='panel-heading center'>
<%= image_tag @thing.image.url(:medium) %>
</div>
<div class='panel-body'>
<p>
<strong><%= @thing.title %></strong>
</p>
<p>
<%= @thing.description %>
</p>
<p>
<%= @thing.user.email %>
</p>
<% if @thing.user == current_user %>
<%= link_to 'Edit', edit_thing_path(@thing) %>
<% end %>
</div>
</div>
</div>

最佳答案

您可以使用 Bootstrap text-center 类。

<div class="row">
<div class="col-md-offset-2 col-md-8">
<div class="panel panel-default">
<div class="panel-heading text-center">
..
</div>
<div class="panel-body">
..
</div>
</div>
</div>
</div>

演示:http://bootply.com/97325

关于html - Bootstrap : How to center image in panel heading?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20269692/

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