CSS
1. 概念: Cascading Style Sheets 层叠样式表
* 层叠:多个样式可以作用在同一个html的元素上,同时生效
2. 好处:
1. 功能强大
2. 将内容展示和样式控制分离
* 降低耦合度。解耦
* 让分工协作更容易
* 提高开发效率
3. CSS的使用:CSS与html结合方式
1. 内联样式
* 在标签内使用style属性指定css代码
* 如:<div style="color:red;">hello css</div>
2. 内部样式
* 在head标签内,定义style标签,style标签的标签体内容就是css代码
* 如:
<style>
div{
color:blue;
}
</style>
<div>hello css</div>
3. 外部样式
1. 定义css资源文件。
2. 在head标签内,定义link标签,引入外部的资源文件
* 如:
* a.css文件:
div{
color:green;
}
<link rel="stylesheet" href="css/a.css">
<div>hello css</div>
<div>hello css</div>
* 注意:
* 1,2,3种方式 css作用范围越来越大
* 1方式不常用,后期常用2,3
* 3种格式可以写为:
<style>
@import "css/a.css";
</style>
4. css语法:
* 格式:
选择器 {
属性名1:属性值1;
属性名2:属性值2;
...
}
* 选择器:筛选具有相似特征的元素
* 注意:
* 每一对属性需要使用;隔开,最后一对属性可以不加;
css选择器
5. 选择器:筛选具有相似特征的元素
* 分类:
1. 基础选择器
1. id选择器:选择具体的id属性值的元素.建议在一个html页面中id值唯一
* 语法:#id属性值{}
2. 元素选择器:选择具有相同标签名称的元素
* 语法: 标签名称{}
* 注意:id选择器优先级高于元素选择器
3. 类选择器:选择具有相同的class属性值的元素。
* 语法:.class属性值{}
* 注意:类选择器选择器优先级高于元素选择器
<style>
#div1 {
color: red;
}
div {
color: blue;
}
.cls1 {
color: aqua;
}
</style>
2. 扩展选择器:
1. 选择所有元素:
* 语法: *{}
2. 并集选择器:
* 选择器1,选择器2{}
3. 子选择器:筛选选择器1元素下的选择器2元素
* 语法: 选择器1 选择器2{}
4. 父选择器:筛选选择器2的父元素选择器1
* 语法: 选择器1 > 选择器2{}
5. 属性选择器:选择元素名称,属性名=属性值的元素
* 语法: 元素名称[属性名="属性值"]{}
6. 伪类选择器:选择一些元素具有的状态
* 语法: 元素:状态{}
* 如: <a>
* 状态:
* link:初始化的状态
* visited:被访问过的状态
* active:正在访问状态
* hover:鼠标悬浮状态
<style>
div, p {
border: 1px solid;
}
div p {
color: red;
}
div > p {
border: 1px solid;
}
input[type="text"] {
border: 6px solid;
}
a:link {
color: olivedrab;
}
a:hover {
color: yellow;
}
a:active {
color: red;
}
a:visited {
color: coral;
}
</style>
css属性
6. 属性
1. 字体、文本
* font-size:字体大小
* color:文本颜色
* text-align:对其方式
* line-height:行高
2. 背景
* background:
3. 边框
* border:设置边框,符合属性
4. 尺寸
* width:宽度
* height:高度
5. 盒子模型:控制布局
* margin:外边距
* padding:内边距
* 默认情况下内边距会影响整个盒子的大小
* box-sizing: border-box; 设置盒子的属性,让width和height就是最终盒子的大小
* float:浮动
* left
* right
<style>
<!--
字体文本-- >
p {
color: red;
font-size: 30px;
text-align: center;
line-height: 100px;
/*
border 边框
*/
border: 1px solid red; /*1px 实线 红色*/
}
div {
border: 1px solid red;
/*尺寸*/
width: 200px;
height: 200px;
/*背景*/
background: url("image/logo.jpg") no-repeat center; /*不重复*/
}
</style>
小练习(注册页面)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<style>
body {
background: url("img/register_bg.png") no-repeat center;
}
* {
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
.rg_layout {
width: 1000px;
height: 650px;
margin: auto;
border: 8px solid #EEEEEE;
background-color: white;
padding-top: 30px;
margin-top: 40px;
box-sizing: border-box;
}
.rg_left {
float: left;
margin-left: 20px;
margin-top: -10px;
}
.rg_left > p:first-child {
color: #FFD026;
font-size: 20px;
}
.rg_left > p:last-child {
color: #A6A6A6;
font-size: 20px;
}
.rg_center {
margin-left: 60px;
float: left;
margin-left: 130px;
margin-top: 50px;
}
.rg_right {
margin-right: 10px;
margin-top: -10px;
float: right;
}
.rg_right > p {
font-size: 15px;
}
.rg_right > p > a {
color: pink;
}
.td_left {
width: 100px;
text-align: left;
height: 45px;
}
#username, #password, #email, #name, #phone, #birthday, #img {
width: 251px;
height: 32px;
border: 1px solid gray;
/*
设置边框圆角
*/
border-radius: 5px;
padding-left: 5px;
}
#img {
width: 120px;
}
#img_check {
height: 32px;
vertical-align: middle;
}
#btn_sub {
width: 150px;
height: 40px;
background-color: yellow;
border: 1px solid yellow;
}
</style>
<body>
<div class="rg_layout">
<div class="rg_left">
<p>新用户注册</p>
<p>USER REGISTER</p>
</div>
<div class="rg_center">
<div class="rg_form">
<form action="#" method="post">
<table>
<tr>
<td class="td_left"><label for="username">用户名</label></td>
<td class="td_right"><input type="text" name="username" id="username" placeholder="请输入用户名"></td>
</tr>
<tr>
<td class="td_left"><label for="password">密码</label></td>
<td><input type="password" name="password" id="password"></td>
</tr>
<tr>
<td class="td_left"><label for="email">Email</label></td>
<td><input type="email" id="email" name="email"></td>
</tr>
<tr>
<td class="td_left"><label for="name">姓名</label></td>
<td><input type="text" id="name" name="name"></td>
</tr>
<tr>
<td class="td_left"><label for="phone">手机号</label></td>
<td><input type="number" id="phone" name="phone"></td>
</tr>
<tr>
<td class="td_left"><label for="gender">性别</label></td>
<td><input type="radio" id="gender" name="gender">男 <input type="radio" name="gender">女
</td>
</tr>
<tr>
<td class="td_left">出生年月</td>
<td><input type="date" id="birthday"></td>
</tr>
<tr>
<td class="td_left"><label for="img">验证码</label></td>
<td><input type="text" id="img" name="img"> <img
src="img/verify_code.jpg" id="img_check"></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" id="btn_sub" value="注册"></td>
</tr>
</table>
</form>
</div>
</div>
<div class="rg_right">
<p>已有账号?<a href="#">立即登录</a></p>
</div>
</div>
</body>
</html>