ai cũng có thể giúp tôi với những gì cần làm cho css cho IE (cho bản thiết kế css)
tôi đã làm
<?php $headlink = $this->headLink();
$headlink->appendStylesheet($this->baseUrl('css/blueprint/screen.css') , 'screen, projection')
->appendStylesheet($this->baseUrl('css/blueprint/ie.css'), 'screen, projection', "IE")
->appendStylesheet($this->baseUrl('css/blueprint/print.css'));
echo $headlink;
?>
và mã này không làm việc, hoặc
<?php $headlink = $this->headLink();
$headlink->appendStylesheet($this->baseUrl('css/blueprint/screen.css') , 'screen, projection')
->appendStylesheet($this->baseUrl('css/blueprint/ie.css'), 'screen, projection', true)
->appendStylesheet($this->baseUrl('css/blueprint/print.css'));
echo $headlink;
?>
CẬP NHẬT ::
nó shoudl trông giống như
<!--[if lt IE 8]><link rel="stylesheet" href="css/blueprint/ie.css" type="text/css" media="screen, projection"><![endif]-->
hãy thêm những gì bạn đang mong đợi và kết quả thực tế của bạn là gì. Ngoài ra thêm thông tin về nếu điều này chỉ xảy ra mà đường dẫn vv Đọc các câu hỏi thường gặp để hỏi một câu hỏi tốt xin vui lòng, theo cách này bạn sẽ nhận được sự giúp đỡ của bạn nhanh hơn và nó sẽ giúp bạn nhiều hơn nữa. –
khi bạn yêu cầu cập nhật. –