重複の可能性:
CSSスタイリング-これら2つのdivボックスを隣接させる方法
私は2つの段落をしなければなりません:
Para 1
Para 2
どうすれば次のように表示できますか?
Para1 Para2
自分のスペースとボックスの両方に。
<div>
<div class="block" id="profile">
<h3>Professional Profile</h3>
<p>Knowledge in all aspects of web application development.
My Skills to solve programming errors gets the job
faster. Proficient in performance tuning database applications.</p>
</div>
ここで何をしますか?
<div class="block" id ="contact">
<p>
<h3> Contact</h3>
<address>Written by W3Schools.com<br /><a href="mailto:rjohn5854@howardcc.edu">
Email Me!!!</a><br />Address: Box 3223,City<br />Phone:6750</address>
<p>
</div>
</div>
CSS
div.block p {
display: inline-block;
}