,008jquery_子孙元素选择器

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
  <head>
    <title>f_html.html</title>
    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    <style type="text/css">
        div,p,label
        {
            float: left;
            border: solid 1px #666;
            margin: 5px;
            padding: 5px;
        }
        label
        {
            width: 30px;
            height:30px
        }
    </style>
    <script type="text/javascript" src="../js/jquery/jquery190.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("div label").css("background-color","blue");
        });
    </script>
  </head>
  
  <body>
        <div>码农家族
            <p>
               <label></label>
            </p>
            <label></label>
        </div>
  </body>
  
</html>