如何让一个<div>的背景图片完全填充这个<div> 谢谢。

不是插入的图片而是背景图片 background="图片.jpg";
我百度了一下,用 background-size:100%; 行不通, 请大牛指点。

You can use:

background-size: cover;
Or just use a big background image with:

background: url('../images/teaser.jpg') no-repeat center #eee;

.login_background {
position: absolute;
width: 100%;
height: 100%;
z-index: -1;
top: 0px;
left: 0px;
}

.login_bgimg {
    position: fixed;
    width: 100%;
    height: 100%;
}

作为图片放到一个div里,div设置靠下的层次,作为背景

background-size:109% 100%;