<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>css基本选择器</title>
<style>
/* 1标签选择器 */
div{}
/* 2.class选择器 */
.div{}
/* 3.id选择器 */
#id{}
/* 4子代代选择器 */
body>div{}
/* 5.后代选择器 */
.div div{}
/* 6.并集集选择器 */
body,div{}
/* 7交集选择器
交集选择器的第一个元素必须为标签元素 */
span.logo{}
/* 8.属性选择器 */
input[type="text"]{}
input[type="password"]{}
</style>
</head>
<body>
<div class="div" id-"div">
<div>
<span class="logo"></span>
</div>
<span> </span>
<input type="text">
<input type="password">
</div>
</body>
</html>