您好我想漸變色添加到我的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>
請告訴我如何解決這個問題
看起來做工精緻......什麼問題? – kukkuz
同意,這有效,所以什麼不適合你? – LGSon