我正在尝试将style =“vertical-align:top”添加到表的所有td元素中。尝试这个将冷却,在这篇文章后,但无法使其工作
http://ckeditor.com/forums/Support/Removal-and-tags-around-data
答案 0 :(得分:5)
您是否有理由尝试将此样式应用于ColdFusion?为什么不在样式表中应用样式?
table tr td {
vertical-align: top;
}
答案 1 :(得分:2)
你最后需要一个半冒号
<td style="vertical-align:top;">your content here</td>
这也有效:
<td valign="top">Your content here</td>