我的背景没有填满我想要的:它只填在 txt 后面,而不是 div 的整个高度。有两个 div 内联,周围有一个包装器。右边的 div 有一个通过 CSS 的背景。但是填不上。。
它很简单,但我被困住并感到羞愧(或累了和匆忙)-grrr- 让它与 css3 一起工作,但它对我的一些“访问者/客户”等来说是新的。
这里是:
<style type="text/css">
<!--
body {
font: 100%/1.4 Helvetica, Verdana, Arial, sans-serif;
background: #FFF;
margin: 0;
padding: 0;
color: #000;
}
.container {
width: 100%;
background: #FFF;
margin: 0;
padding:0;
}
.wrapper {
display: inline-block;
width:75%;
float:right;
text-align:right;
margin:0;
padding:0;
}
.wrapper-img {
display:inline;
margin:0;
padding:0;
width:7px;
height:45px;
}
.wrapper-content-img {
display:inline;
margin:0;
padding:0;
width: 100%;
height: 45px;
background-image:url(images/paper-for-info-menu-right.gif);
/*background-size:100%;*/
}
.stretch {
width:100%;
height:100%;
}
-->
</style>
</head>
<body>
<div class="container">
<p> TEST TEST</p>
<div class="wrapper">
<div class="wrapper-img">
<img src="images/paper-for-info-menu-left.gif" width="7" height="45" alt="" />
<!-- End wrapper img--></div>
<div class="wrapper-content-img">
Lorem Ipsum Test Txt - Where is my background?
<img src="images/paper-for-info-menu-right.gif" width="" height="45px" alt="" />
<!-- End wrapper content img--></div>
<!-- End container --></div>
</body>
</html>