如何将导航栏组件放在中心?这是我第一次这样做,我大部分都还好,但我似乎无法解决这个问题,所以看起来并不奇怪
<template>
<div class="container">
<header>
<h1>GIF'S APP</h1>
<form>
<span class="font-semibold mr-2 text-left flex-auto text-white">Search for the coolest gifs</span>
<div>
<b-nav-form>
<b-input-group>
<b-form-input id="input-small" size="sm" type="text" v-model="search" />
<b-button class="btn-success" type="button" v-on:click="searchNewGifs()">Search</b-button>
<div class="gifs--container">
<Gif v-for="gif in gifs" v-bind:key="gif.id" v-bind:data="gif"></Gif>
</div>
<b-button
class="btn-success"
type="button"
v-if="!stopNextPage"
v-on:click="getNextPage()"
>Next Page</b-button>
</b-input-group>
</b-nav-form>
</div>
</form>
</header>
</div>
</template>
使用类mx-auto
水平中心和类my-auto
作为垂直中心,如果您想使水平和垂直中心使用m-auto
和注意:非常重要的是父级具有样式dispaly: flex
,并且可用于此样式的类是d-flex
。