divクラスとスタイルを一緒に作成しようとしていますが、どういうわけかスタイルが機能していません。答えが見つかりません。コードは次のとおりです。
PHP
<div class="table">
<p><b>TEXT here</b><br />
...</p>
<div class="table_cell" style="width=180px !important; color=red !important;"><p>1<br />2<br />3<br />4<br />5<br />6</p></div>
<div class="table_cell" style="width=645px !important;"><p><b>€ 282</b><br /></p></div>
<p>Good luck in the future</p></div>
CSS
div.table{
margin: 10px;
padding: 10px;
width: 825px;
border: 1px solid;
background: #E0F8EC;
border-radius:10px;
}
div.table_cell{
margin-top: 10px;
margin-bottom: 10px;
float: left;
}
外部cssファイルからのものを除いて、divで定義されたスタイルは機能していません。