2つのimg要素の上に中央の "Portfolio"で埋められたH2要素を取得しようとしています。私はこれをするのに苦労している。今は、2つの.col-md-4ブートストラップ列の左側にスタックされています。あなたは私を正しい方向に向けることができますか?H2要素の問題
ここはthe codepenです。 row
クラスの
<div class="portf row">
<h2>Portfolio</h2>
<div class="portfolio col-md-4">
<img class="port1 img-responsive" src="https://s8.postimg.org/v4ol85ct1/hangman.jpg">
<p>A game of hangman made with: HTML, CSS, and JavaScript.</p>
</div>
<div class="col-md-4 img-responsive"><img src="https://s8.postimg.org/3kagp7ctx/BFSkinner.jpg" alt="pic 2">
<p>A B.F. Skinner tribute page made with: HTML and CSS.</p>
</div>
</div>
ありがとう。私はcol-md-offset-2クラスを読み上げます。 –