我知道IE7& IE8应该支持使用多个CSS类选择器,但我似乎无法使其工作。
CSS:
.column { float: left; display: block; margin-right: 20px; width: 60px; } .two.column { width: 140px; } .three.column { width: 220px; } .four.column { width: 300px; }
HTML:
<div class='two column'>Two Columns</div> <div class='three column'>Three Columns</div> <div class='four column'>Four Columns</div>
它总是使用.four.column规则。关于我在做什么错误的任何想法?
解决方法
您要确保并使用文档类型,因此您不会以怪癖模式呈现。例如:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title>Test Page</title> <style type="text/css"> .column { float: left; display: block; margin-right: 20px; width: 60px; border: 1px solid; } .two.column { width: 140px; } .three.column { width: 220px; } .four.column { width: 300px; } </style> </head> <body> <div class="two column">Two Columns</div> <div class="three column">Three Columns</div> <div class="four column">Four Columns</div> </body> </html>