css實現背景漸變色

<div class="gradient"></div>

添加樣式:html

.gradient{
    width:100%;
    /*height:150px;*/
    background:-webkit-gradient(linear, 0 0, 0 bottom, from(#344a73), to(#353334))
}