Hi,
what's wrong with this code?
Now disappear background and div after this code show incorrect.
<html>
<head>
<style type="text/css">
#first{
width: 200px;
background-color: #345752;
}
#left_b{
background:transparent url('img/left.png');
background-position: left top;
background-repeat: repeat-y;
}
#right_b{
background:transparent url('img/right.png');
background-position: right top;
background-repeat: repeat-y;
}
#text{
float: left;
width: 50px;
}
#text2{
float: left;
width: 70px;
}
</style>
</head>
<body>
<div id = "first">
<div id = "left_">
<div id = "right_b">
<div id = "text">
text 1
</div>
<div id = "text2">
text 2
</div>
</div>
</div>
</div>
</body>
</html>