2016-03-31 7 views

答えて

0

はい、IEの古いバージョンではCSSの一部が動作しません。 IEブラウザでCSSをサポートするには、--webkitを使用する必要があります。

例:

/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#d5cea6+0,c9c190+40,b7ad70+100;Brown+3D */ 
background: #d5cea6; /* Old browsers */ 
background: -moz-linear-gradient(top, #d5cea6 0%, #c9c190 40%, #b7ad70 100%); /* FF3.6-15 */ 
background: -webkit-linear-gradient(top, #d5cea6 0%,#c9c190 40%,#b7ad70 100%); /* Chrome10-25,Safari5.1-6 */ 
background: linear-gradient(to bottom, #d5cea6 0%,#c9c190 40%,#b7ad70 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d5cea6', endColorstr='#b7ad70',GradientType=0); /* IE6-9 */ 

ここではIE

background: linear-gradient(to bottom, #d5cea6 0%,#c9c190 40%,#b7ad70 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ 
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d5cea6', endColorstr='#b7ad70',GradientType=0); /* IE6-9 */ 
0

使用しているIEのバージョンブラザー...をサポートするために、背景のグラデーションのためにこれを追加しますか? IE 5はそれほど多くのHTML5をサポートしていません。親切に、下記のリンクを経るこれらがお手伝いしますことがあります

header/footer/nav tags - what happens to these in IE7, IE8 and browsers than don't support HTML5?

html5 new elements (header, nav, footer, ..) not working in IE

もこの

http://www.impressivewebs.com/html5-support-ie9/

関連する問題