<div class="container">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-8">
<div v-for="job in job">
<div class="text-center">
<h1>{{ job.job_title }}</h1>
<p><strong>Google Inc. </strong> - {{ job.location }}</p>
<h2><u>Job Description</u></h2>
</div>
<p v-html="desc"></p>
<p class="text-center">Posted: {{ formatDate(job.date_created) }}</p>
<button v-on:click="applyResume()" id="apply-btn" class="btn btn-primary">{{ buttonText }}</button>
</div>
</div>
<div class="hidden-sm-down col-md-4"></div>
</div>
このボタンを中央に配置する方法がわかりません。 BS 3では、センターブロックを使用しますが、BS4のオプションではありません。何かアドバイス?
Bootstrap 4では、text-center
クラスを使用してインラインブロックを整列させる必要があります。
注:親要素に適用するカスタムクラスで定義されたtext-align:center;
は、使用しているBootstrapバージョンに関係なく機能します。そしてそれはまさに.text-center
が適用するものです。
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<div class="container">
<div class="row">
<div class="col text-center">
<button class="btn btn-default">Centered button</button>
</div>
</div>
</div>
フォームグループを閉じた後、Bootstrapフォームのボタンで中央揃えするために使用する完全なHTMLは次のとおりです。
<div class="form-row text-center">
<div class="col-12">
<button type="submit" class="btn btn-primary">Submit</button>
</div>
</div>
Bootstrap 4の親コンテナでtext-center
クラスを使用します
ブートストラップでこれを試してください
<div class="row justify-content-center">
<button type="submit" class="btn btn-primary">btnText</button>
</div>
https://getbootstrap.com/docs/4.1/layout/grid/#variable-width-content