0
好吧,我有一個使用嵌入視圖的角度應用程序。不確定它是否重要,但是如果它是一個普通的html文件,我將它的實際內容替換爲所有的嵌入。無論如何,我試圖在頁面底部水平居中固定的uib-pagination元素。CSS:以引導分頁元素爲中心
<!DOCTYPE html>
<html>
<head>
<title></title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
<!-- Imports for my personal stylesheet as well as ui-bootstrap's and angular material's stylesheets go here-->
</head>
<body style="width:100vw; height:auto">
<div ng-app="app" layout-fill ng-cloak>
<div class="root-container" layout-fill style="width:100vw; height:auto padding:0; position: absolute;">
<md-content layout="column" layout-fill style="width:100vw; height:auto">
<md-toolbar style="width:100vw; height:auto">
<div class="md-toolbar-tools">
<md-button aria-label="Go Back"> Go Back </md-button>
<md-button class="md-raised" aria-label="Learn More"> Learn More </md-button>
</div>
</md-toolbar>
<md-tabs md-selected="vm.selectedIndex" md-border-bottom>
<md-tab label="Home"> </md-tab>
<md-tab label="Submit"> </md-tab>
<md-tab label="Contact"> </md-tab>
</md-tabs>
<md-content class="main-body-content">
<ul uib-pagination total-items="vm.itemCount" items-per-page="vm.itemsPerPage" ng-model="vm.currentPage" ng-change="log()" max-size="vm.maxShownPagination" class="pagination-lg" boundary-links="true" force-ellipses="true">
</ul>
</md-content>
</div>
</md-content>
</div>
</div>
<!---- scripts go here ---->
</body>
</html>
這裏是我的樣式與主體內容的背景紅色的對比度和視圖能力:
.main-body-content {
height: 100vh;
width: 100vw;
background: red;
}
.pagination-lg {
position: fixed;
bottom: 0px;
width: 100vw;
margin-left: auto;
margin-right: auto;
}
下面是截圖:
,你可以請參閱頁面底部附近的分頁元素,並且它與視口一起滾動,但不是水平居中。幫幫我?新的CSS。
感謝,我會檢查出來,並送還給你。如果我滿意,我會給你upvote – RudolphRedNose
當然。讓我知道事情的後續。 –
非常感謝,我沒有意識到Angular Material和UI-Bootstrap之間會有兼容性問題。 – RudolphRedNose