我需要更新一些预先存在的代码。
css => array(
'body' => 'overflow-x:hidden;',
'#wrapper' => 'width:500px;'
)
我假设=>
建议它以 PHP 格式完成。
我需要做的是添加一个 IE8 css hack,我试过这个但无济于事:
css => array(
'body' => 'overflow-x:hidden;',
'#wrapper' => 'width:500px;',
'<!--[if IE 8]>#rightcol' => 'width:200px;<![endif]-->'
)
有人可以帮我解决这个问题吗?