構文に誤りがあるためです
<div style="margin-top: 5px;"> </div>
<div style="display: inline-block; width:250px; height:180px; background-color:#fff; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);">
<center>
<div style="font-weight: bold; text-align: center; width: 250px; height: 50px; font-family: 'Droid Sans', sans-serif; color:#000; font-size:12px; border:0; height:100%; line-height: 30px;">
Top 5 Números Ganhadores
1º -
</div>
</center>
</div>
<div style="display: inline-block; width:250px; height:180px; background-color:#fff; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);">
<center>
<div style="font-weight: bold; text-align: center; width: 250px; height: 50px; font-family: 'Droid Sans', sans-serif; color:#000; font-size:12px; border:0; height:100%; line-height: 30px;">
Top 5 Números Escolhidos<p>
1º -
</div>
</center>
</div>
「Top5NúmerosEscolhidos」の後に閉じたことのない開始Pタグがあります
Top 5 Números Escolhidos<p>
1º -
それを取り除いてください、そうすればあなたは行ってもいいでしょう!
http://jsfiddle.net/S636H/
編集:
divにテキスト以上のものを入れたいですか?両方のdivを左側にフロートさせ、pタグを必ず閉じてください。
<div style="margin-top: 5px;"> </div>
<div style="display: inline-block; width:250px; height:180px; background-color:#fff; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);">
<center>
<div style="font-weight: bold; text-align: center; width: 250px; height: 50px; font-family: 'Droid Sans', sans-serif; color:#000; font-size:12px; border:0; height:100%; line-height: 30px; float:left;">
Top 5 Números Ganhadores
1º -
</div>
</center>
</div>
<div style="display: inline-block; width:250px; height:180px; background-color:#fff; box-shadow: 0 1px 5px rgba(0, 0, 0, 0.25);">
<center>
<div style="font-weight: bold; text-align: center; width: 250px; height: 50px; font-family: 'Droid Sans', sans-serif; color:#000; font-size:12px; border:0; height:100%; line-height: 30px; float:left;">
Top 5 Números Escolhidos<p></p>
1º -
</div>
</center>
</div>
http://jsfiddle.net/48wAA/
または、divをフロートさせたくない場合は、pタグがインラインであることを確認してください:http:
//jsfiddle.net/CkGJf/