与药丸内容相比,侧边栏没有站立起来有问题。这段代码的结果基本上是<aside>
被推到药丸标签旁边的左上角,而药丸内容遍布在它下面并锚定在左边。我已经尝试了很多CSS技巧(边距,宽度等),但似乎没有任何东西可以将其捕捉到内容中心(这些是微博)。
相关CSS:
.nav-pills > .active > a,
.nav-pills > .active > a:hover,.nav-pills > li > a:hover {
float:none;
display:inline-block;
*display:inline;
zoom:1;
text-decoration: none;
font-weight: bold;
border-radius:0px;
border-bottom-width: 4px;
border-bottom-style: solid;
border-bottom-color: #000000;
color: #000 !important;
background-color: transparent !important;
}
.nav-pills {
border-radius:0px;
text-align: center;
}
相关的再培训局:
<% provide(:title, @user.name) %>
<div class="row">
<aside class="col-md-4">
<section class="user_info">
<h1>
<%= gravatar_for @user %>
<%= @user.name %>
</h1>
<% if @user.admin? %>
<span class="label label-warning">Administrator</span>
<% end %>
<br>
<br>
<br>
<br>
<div style="color:grey">
<% if current_user.admin? %>
<%= @user.email %>
<% end %>
<br>
<%= @user.activated_at.strftime("Joined: %m/%d/%Y") %>
</div>
</section>
</aside>
<div class="col-md-8">
<ul class="nav nav-pills">
<li class="active">
<a data-toggle="pill" href="#microposts">Posts (<%= @user.microposts.count %>)</a>
</li>
<li>
<a data-toggle="pill" href="#events">Events (Insert count here)</a>
</li>
</ul>
</div>
</div>
<div class="tab-content">
<div id="microposts" class="tab-pane fade in active">
<% if @user.microposts.any? %>
<ol class="microposts">
<%= render @microposts %>
</ol>
<%= will_paginate @microposts %>
<% else %>
No posts yet. Create one on the sidebar.
<% end %>
</div>
<div id="events" class="tab-pane fade">
<p>Events brah</p>
</div>
</div>
答案 0 :(得分:0)
最终发生的事情是<div class="tab-content">
需要位于row
和col-md-6
分隔符标记内,以便它仍然认识到必须进行居中。否则,关于中心药片和标签内容的类似问题可以在Twitter Bootstrap: Center Pills
很明显,我可以使用更多的CSS培训,抱歉花在考虑这个问题上的时间。