在横幅中修复图片

时间:2014-12-25 07:17:03

标签: html css

![飞机] [1]

#top
{
    background-color:maroon;
    width:100%;
    height:110px;
    background-image:url(im.jpg);
    background-repeat:no-repeat;
}

我希望图片能够在横幅中修复。但我不知道如何实现这一目标。

1 个答案:

答案 0 :(得分:0)

<!doctype html>
<html>
<head>
<style>
       #sample{
    background-color:maroon;
    width:100%;
    height:110px;
    background-image:url(im.jpg);
    background-size: 100% 110px;
    background-repeat:no-repeat;
}

</style>
</head>
<body>
<div id='sample'></div>
</body>
</html>
相关问题