IE9에는 현재 CSS3 그라디언트 지원이 없습니다. 그러나 여기에 PHP를 사용하여 SVG (수직 선형) 그래디언트를 대신 반환하는 좋은 해결 방법이 있습니다. 이렇게하면 디자인을 스타일 시트에 유지할 수 있습니다.
<?php
$from_stop = isset($_GET['from']) ? $_GET['from'] : '000000';
$to_stop = isset($_GET['to']) ? $_GET['to'] : '000000';
header('Content-type: image/svg+xml; charset=utf-8');
echo '<?xml version="1.0"?>
';
?>
<svg xmlns="http://www.w3.org/2000/svg" version="1.1" width="100%" height="100%">
<defs>
<linearGradient id="linear-gradient" x1="0%" y1="0%" x2="0%" y2="100%">
<stop offset="0%" stop-color="#<?php echo $from_stop; ?>" stop-opacity="1"/>
<stop offset="100%" stop-color="#<?php echo $to_stop; ?>" stop-opacity="1"/>
</linearGradient>
</defs>
<rect width="100%" height="100%" fill="url(#linear-gradient)"/>
</svg>
서버에 업로드하고 다음과 같이 URL을 호출하기 만하면됩니다.
gradient.php?from=f00&to=00f
이것은 다음과 같이 CSS3 그라디언트와 함께 사용할 수 있습니다.
.my-color {
background-color: #f00;
background-image: url(gradient.php?from=f00&to=00f);
background-image: -webkit-gradient(linear, left top, left bottom, from(#f00), to(#00f));
background-image: -webkit-linear-gradient(top, #f00, #00f);
background-image: -moz-linear-gradient(top, #f00, #00f);
background-image: linear-gradient(top, #f00, #00f);
}
IE9 미만을 타겟팅해야하는 경우에도 이전 독점 '필터'방법을 사용할 수 있습니다.
.ie7 .my-color, .ie8 .my-color {
filter: progid:DXImageTransform.Microsoft.Gradient(startColorStr="#ff0000", endColorStr="#0000ff");
}
물론 PHP 코드를 수정하여 그라디언트에 더 많은 정지 점을 추가하거나 더 정교하게 만들 수 있습니다 (방사형 그라디언트, 투명도 등). 그러나 이것은 단순한 (수직) 선형 그라디언트에 적합합니다.