三个div,每个div,一个背景图,中间的一个有文字,都设为左浮动
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.one{
width: 10px;
height: 100px;
background-image: url(images/l.png);
float: left;
}
.tree{
width: 10px;
height: 100px;
background-image: url(images/r.png);
float: left;
}
.two{
height: 100px;
background-image: url(images/m.png);
float: left;
line-height: 100px;
}
</style>
</head>
<body>
<div class="one"></div>
<div class="two"> 我是大美女</div>
<div class="tree"></div>
</body>
</html>