一、复合选择器
1.后代选择器:选择器选择器,会选中该标签内部所有符合条件的标签
2.子代选择器:选择器>选择器,会选中该标签内部所有的符合条件的儿子标签
3.兄弟选择器:选择器+选择器,会选中该标签下面紧挨着的第个标签
4.并集选择器:选择器,选择器,会选中,分隔的标签
5.伪类选择器:选择器:状态,
(1).link:未连接的
(2).visited:访问过的
(3).hover:鼠标悬停
(4).active:鼠标按住
(5).focus:聚焦的状态
二、emment语法
1. html的emment语法
1.1标签名加Tab键快速生成标签
1.2使用*生成多个相同的标签
1.3使用>生成父子关系
1.4使用+生成兄弟关系
1.5使用.和#生成类名或者id名的标签
1.6使用{}生成带有文字的标签
2. css的emment语法: 首字母简写
<style>
/*
后代选择器: 选择器 选择器
后代:在该元素内部的元素,都是元素的后代,不管存在多少级
*/
.parent div {
color: red;
}
.parent h1 {
color: blue;
}
style>
<body>
<div class="parent">
<div>我是后代div1div>
<div>我是后代div2div>
<h1>我是后代h11h1>
<h1>我是后代h12h1>
<div>
你好
<h1>这个是孙子辈的h1h1>
div>
div>
body>
<style>
/* 子代选择器: 选择器>选择器 */
.parent>div {
color: red;
}
style>
<body>
<div class="parent">
<h1>我是h1h1>
<h1>我是h1h1>
<h1>我是h1h1>
<h1>我是h1h1>
<div>
<h1>我是h1h1>
div>
div>
body>
<style>
/*
兄弟选择器:选择器+选择器
注意事项:兄弟指的是:该标签下面的第一个紧挨着的标签
*/
/* .base+h1 {
color: red;
} */
.base+p {
color: red;
}
style>
<body>
<h1>第一个h1标签h1>
<h1 class="base">第二个h1标签h1>
<h1>第三个h1标签h1>
<h1>第四个h1标签h1>
<p>p标签p>
body>
<style>
/* 并集选择器:选择器,选择器 */
div,h1,p,span {
color: red;
}
style>
<body>
<div>我是divdiv>
<h1>我是h1h1>
<p>我是p标签p>
<span>我是spanspan>
body>
<style>
/*
伪类选择器: 选择器:状态
hover:鼠标悬停
link:未访问的状态
visited:访问过得状态
active:鼠标按下没有抬起的状态
focus:焦点聚集状态
*/
.a1:hover{
color: red;
}
.a2:link {
color: black;
}
.a3:visited {
color: green;
}
.a4:active {
color: orchid;
}
.input:focus {
border: 5px solid red;
}
style>
<body>
<a href="#" class="a1">第一个链接a>
<br>
<a href="##" class="a2">第二个链接a>
<br>
<a href="###" class="a3">第三个链接a>
<br>
<a href="####" class="a4">第四个链接a>
<input type="text" class="input">
body>
<style>
/* 首字母简写 */
h1 {
width: 200px;
height: 200px;
}
style>
<body>
<h1>h1>
<h1>h1>
<h1>h1>
<ul>
<li>li>
ul>
<div>div>
<h1>h1>
<div class="header">div>
<div id="demo">div>
<h1>我是h1h1>
body>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>案例一plustitle>
<style>
.content {
border: 1px solid black;
width: 100px;
}
.content div {
width: 100px;
height: 100px;
background-color: red;
display: none;
}
.content:hover div{
display: block;
}
style>
head>
<body>
<div class="content">
<a href="">悬停显示a>
<div>
你看到我了
div>
div>
body>
html>
效果图
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>登录界面title>
<style>
* {
margin: 0px;
padding: 0px;
}
body {
background-color: #f5f5f5;
color: white;
font-size: 12px;
}
a {
text-decoration: none;
color: white;
}
.header {
height: 102px;
width: 950px;
margin: 0 auto;
}
.header p {
line-height: 90px;
color: #4f4e4d;
font-size: 24px;
background-image: url(images/logo.png);
background-repeat: no-repeat;
background-position: left center;
text-align: right;
width: 280px;
}
/* 登录区域开始 */
.content {
background-image: url(images/regist.png);
background-repeat: repeat-x;
height: 560px;
}
.login {
width: 280px;
height: 296px;
float: right;
margin-right: 122px;
margin-top: 122px;
padding: 10px;
box-sizing: border-box;
background-color: rgba(0,0,0,0.3);
}
.title {
height: 40px;
border-bottom: 1px solid #f0f0f0;
line-height: 40px;
}
.title>span {
font-size: 18px;
}
.title a {
float: right;
}
.username, .password {
height: 85px;
}
.username input {
width: 100%;
height: 38px;
margin-top: 15px;
border: none;
padding-left: 10px;
box-sizing: border-box;
background-image: url(images/username.png);
background-repeat: no-repeat;
background-position: 95% center;
}
.password input {
width: 100%;
height: 38px;
margin-top: 15px;
border: none;
padding-left: 10px;
box-sizing: border-box;
background-image: url(images/username.png);
background-repeat: no-repeat;
background-position: 95% center;
}
.choose a{
margin-left: 105px;
}
.login-btn {
margin-top: 10px;
}
.login-btn button {
width: 100%;
height: 37px;
color: white;
/* background-color: #27b0f6; */
background-color: #1aa9f2;
border: none;
font-weight: 700;
}
/* 登录区域结束 */
.footer {
height: 900px;
}
style>
head>
<body>
<div class="header">
<p>欢迎登录p>
div>
<div class="content">
<div class="login">
<div class="title">
<span>登录学子商城span>
<a href="#">新用户注册a>
div>
<div class="username">
<input type="text" placeholder="请输入您的用户名">
div>
<div class="password">
<input type="password" placeholder="请输入您的密码">
div>
<div class="choose">
<input type="checkbox" id="box-login">
<label for="box-login">自动登录label>
<a href="#">忘记密码?a>
div>
<div class="login-btn">
<button>登录button>
div>
div>
div>
<div class="footer">
div>
body>
html>