背景图 自动变化 CSS
有一张比较大的背景图2000×648 图片随着页面的大小而改变,
.css{
width: 100%;
position: absolute;
margin-right: auto;
margin-left: auto;
}
<img src="http://s.cn.bing.net/az/hprichbg/rb/OiaNight_061313_ZH-CN11167850861_1366x768.jpg" / alt="背景图跟随界面大小而改变_html/css_WEB-ITnose" ><div contenteditable="true" style="max-width:90%"></div><input type="button" value="submit"></input>
body {padding:0;margin:0;}img { position:absolute;width:100%;height:100%;z-index:-999;}
使用background的方式好像不能实现,等待高手讲解background实现方式。