2016-09-18 89 views
0

您好我想漸變色添加到我的div的背景.. 我想這個代碼,但它不工作如何漸變顏色添加到背景DIV

#apple { 
 
    background: #0E5D7B; 
 
    /* For browsers that do not support gradients */ 
 
    background: -webkit-linear-gradient(white, #0E5D7B); 
 
    /* For Safari 5.1 to 6.0 */ 
 
    background: -o-linear-gradient(white, #0E5D7B); 
 
    /* For Opera 11.1 to 12.0 */ 
 
    background: -moz-linear-gradient(white, #0E5D7B); 
 
    /* For Firefox 3.6 to 15 */ 
 
    background: linear-gradient(white, #0E5D7B); 
 
    /* Standard syntax */ 
 
}
<div id="apple" style="height: 300px;width:auto;background-color: \t #0E5D7B; margin-top: 0px;"> 
 
</div>

請告訴我如何解決這個問題

+3

看起來做工精緻......什麼問題? – kukkuz

+0

同意,這有效,所以什麼不適合你? – LGSon

回答

-1

只是fyi,你錯過了類選擇器(一個點)。對於一個班級,你使用一個點,#爲一個ID。希望這有助於

+0

代碼中沒有課程:O –

+0

忽略此我厭倦並誤讀。 –

0

#apple{ 
    height: 300px; 
    width:auto; 
    background-color:#0E5D7B; 
    margin-top: 0px; 
    background:linear-gradient(white, lightblue); 
} 

<div id="apple"> 
</div>