html,body{
background: linear-gradient(to right top, #336e7b 0%, #8e44ad 50%, #e74c3c 100%) repeat scroll 0 0 #abb7b7;
margin:0;
padding:0;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
JSFiddle:http://jsfiddle.net/losiuhoi/1ujk40wh/1/
如何将身体背景设置为100%高度?
答案 0 :(得分:3)
将正文的高度设置为100%,否则只需要内容(.msg
div)所需的数量。
html, body {
height: 100%;
}
答案 1 :(得分:0)