我正在尝试制作一个最大宽度为 500 像素且没有最小宽度的网站(适用于手机和平板电脑用户)。
两个角落都有一个图像,不应该调整大小,中间的应该在角落图像留下的空间中调整大小。(我不想使用 javascript)所以有人可以帮我解决这个问题吗?
这是我的css和html代码:
#container {
max-width: 500px;
margin: 0 auto;
position: relative;
}
#top_left{
background: url( '../images/top_left.png' ) no-repeat;
width: 19px;
height: 48px;
float: left;
}
#top_center {
background: url( '../images/top_mid.png' ) repeat-x;
max-width: 461px;
height: 48px;
float: left;
}
#top_right {
background: url( '../images/top_right.png' ) no-repeat;
width: 20px;
height: 48px;
float: right;
}
和html:
<div id="container">
<div id="top_left"></div>
<div id="top_center"></div>
<div id="top_right"></div>
<div class="cb"></div>
</div>