El fondo no se muestra detrás de divs flotantes [duplicado]

Esta pregunta ya tiene una respuesta aquí:

color de fondo css con elementos flotantes 4 respuestas

¿Qué tiene de malo este código?

El fondo desaparece detrás de los divs cuando agregofloat: left a#text y#text2. Pero cuando quito elfloat: left, Todo se ve bien.

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
            "http://www.w3.org/TR/html4/loose.dtd">
<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;
  min-height: 30px;
}
#right_b{
 background:transparent url('img/right.png');
 background-position: right top;
 background-repeat: repeat-y;
}
#text{
 float: left;
 width: 50px;
 height: 30px;
}
#text2{
 float: left;
 width: 70px;
 height: 30px;
}
</style>
</head>
<body>
<div id = "first">
   <div id = "left_b">
      <div id = "right_b"> 
         <div id = "text">text 1</div>
         <div id = "text2">text 2</div>
      </div>
   </div>
</div>
</body>
</html>

Respuestas a la pregunta(3)

Su respuesta a la pregunta