0

我尝试将 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>&euro; 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;
}

div 中定义的样式不起作用,除了来自外部 css 文件的样式。

4

3 回答 3

6

在您的样式属性中遵循 css 语法:

style="width:180px; color:red;"
于 2012-05-10T14:12:42.957 回答
0

在您的样式中,使用您在 CSS 中使用的相同name:value;语法(注意两者之间的冒号 (:):

<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>&euro; 282</b><br /></p></div>
<p>Good luck in the future</p></div>
于 2012-05-10T14:13:07.373 回答
0

语法类似于width: 100px !important而不是width=100px !important

于 2012-05-10T14:13:17.497 回答