以下是我的 HTML:
<div class=container">
<div class="row">
<h2 class="text-center">Enter your name below</h2>
<div class="col-md-6 center">
<img class="profile-picture" ng-src="../Content/images/default-avatar.png" src="../Content/images/default-avatar.png">
</div>
<div class="col-md-6 center">
<h3>Profile name: N/A</h3>
<h3>Status: Waiting for user input</h3>
</div>
</div>
</div>
我的 css 如下(连同引导程序):
.profile-picture
{
max-width: 200px;
max-height: 200px;
}
.center
{
margin: 0 auto;
float: none;
}
这会产生以下输出:
我希望它显示的方式如下所示:
我怎样才能做到这一点?他们不应该显示在同一行上,因为它们是同一行的一部分吗?每个都有 6 的长度,所以为什么它们不水平对齐?