我想要" Find Tenant"为vertical-align:middle
且完全为center
。即使使用" X"图标到最右边。
但我能得到的就是:
这是我的HTML
<div class="book-find-tenant-head">
Find Tenant
<md-button class="md-icon-button" ng-click="ctrl.cancel()" style="float:right;">
<md-icon class="material-icons book-material" aria-label="Close">close</md-icon>
</md-button>
</div>
这是我的book-find-tenant-head
班级
.book-find-tenant-head {
font-family: 'Roboto', 'Arial', 'sans-serif', 'Arial Narrow';
font-weight:bold;
text-align:center;
font-size: 16px;
font-weight: bold;
display: inline-block;
vertical-align: middle;
background-color: #337AB7;
color:#FFFFFF;
height:40px;
}
这可能吗?
答案 0 :(得分:1)
答案 1 :(得分:1)
您可以使用 root: "/myapp/fileasset/ui.html"
对内容进行垂直居中,并使用按钮上的{{1}}将其从文档流中取出(因此不会影响&#39;找到租户& #39;:
{{1}}&#13;
{{1}}&#13;
答案 2 :(得分:1)
使用flexbox和绝对定位是一种选择。
.book-find-tenant-head {
font-family: 'Roboto', 'Arial', 'sans-serif', 'Arial Narrow';
font-size: 16px;
font-weight: bold;
display: flex;
justify-content: center;
align-items: center;
background-color: #337AB7;
color: #FFFFFF;
height: 40px;
}
.md-icon-button {
position: absolute;
right: 1em;
}
<div class="book-find-tenant-head">
<span>Find Tenant</span>
<md-button class="md-icon-button" ng-click="ctrl.cancel()">
<md-icon class="material-icons book-material" aria-label="Close">close</md-icon>
</md-button>
</div>