私は社内ディレクトリのレイアウトを整理しようとしています。左側に従業員ピクチャを表示し、名前、説明、およびMoreInfoリンクを重ねて表示します。私は、ブートストラップ3レイアウトが計画どおりに動作していない
を使用してい
私がいる問題は、私が望むようMOREINFOリンクは画像の下にはなく、説明の下に表示されていることです。ここ
は、コード例です。このため
<div class="row">
<div class="col-md-6">
<img src="images/1.jpg" alt="" style="margin-top:0; margin-right:15px;" class="pull-left">
<div>
<h4 style="font-weight: bold; font-size:1.5em;">Zara Alipat, Ph.D.</h4>
<span>
Zara was born in western Niger, where the few girls who are lucky enough to attend school are pulled out at the age of 12 to get married. Despite the odds, Zara fought to complete her education and enter the professional workforce. Now she holds a Master’s degree, manages Mercy Corps’ human resources in Niger and uses her position to mentor other young people.
</span>
<p>
<a href="#">Read Full Bio</a>
</p>
</div>
</div>
<div class="col-md-6">
<img src="images/1.jpg" alt="" style="margin-top:0; margin-right:15px;" class="pull-left">
<div>
<h4 style="font-weight: bold; font-size:1.5em;">Zara Alipat, Ph.D.</h4>
<span>
Zara was born in western Niger, where the few girls who are lucky enough to attend school are pulled out at the age of 12 to get married. Despite the odds, Zara fought to complete her education and enter the professional workforce. Now she holds a Master’s degree, manages Mercy Corps’ human resources in Niger and uses her position to mentor other young people.
</span>
<p>
<a href="#">Read Full Bio</a>
</p>
</div>
</div>
</div>
任意の提案、または良好なレイアウトの例がはるかに理解されます。
imgのマージンも削除します。これは、あなたのコロンパディングがあなたがしたいことを処理するためです。 – jjeining