html,body{
height:100%; //關鍵
}
/*包裹其他所有div的div*/
#cover {
width:100%; //關鍵
height:auto; //關鍵
border-radius: 10px;
background-size:100% auto;
background-repeat:no-repeat;
background-image: url('<%=basePath%>img/bg.jpg');
-webkit-background-size: cover;
-moz-background-size:cover;
-o-background-size: cover;
}
//其他內部div均設置為height:auto:從而實現自適應
文字自動換行:
word-break:break-all;