今天学到了什么
1.常用的HTML标签
1.1 标题等级--h1~h6
<h1>一级标题</h1>
<h2>二级标题</h2>
<h3>三级标题</h3>
<h4>四级标题</h4>
<h5>五级标题</h5>
<h6>六级标题</h6>
1.2 段落匹配--p
<p>hello world</p>
1.3 插入图片
<img src="images/test.jpg" alt="这是一个,美女"> <br>
1.4 网页链接
<a href="http://www.baidu.com">百度</a>
<input type="test"><button>百度一下</button>
1.5 无序列表--u1,列表项--li
<ul>关于手机
<li>小米手机</li>
<li>华为手机</li>
<li>苹果手机</li>
</ul>
2. CSS
2.1 文本设计
<head>
<style>
/*
color--文字的颜色
line-height--行高会让文本在行高中垂直居中
background-color:设置文本的对齐方向
font-size:设置字体大小
*/
p{
background-color: pink;
color:red;
height: 50px;
line-height: 50px;
text-align: center;
font-size: 12px;
}
</style>
</head>
<body>
<p>不交话费的胡椒粉看电视剧</p>
</body>
2.2 常用选择器
<!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>Document</title>
<style>
/*
p{}元素选择器 慎重使用
*/
/*
p{
color:red;
}*/
/*
.+ClassName{}
特点:
1.课可以给多个标签相同的class名
2.可以给一个标签多个class名
*/
.one{
color: pink;
}
.two{
background: #eee;
}
/*
#+idName{
}
特点:每一个ID名都是唯一的
--写样式的时候不要使用ID选择器
*/
#id{
color: tomato;
}
#three{
color:yellow;
}
h1:hover/*鼠标经过时显示的颜色*/{
color: chartreuse;
}
/*
伪类选择器
element:hover
*/
</style>
</head>
<!--开始标签-->
<body>
<p class="one two">hello world</p>
<p class="one">hello world</p>
<p id="three">hello world</p>
<p>hello world</p>
<p>hello world</p>
<h1>hello world</h1>
</body>
</html>
2.3 盒子模型
<!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>Document</title>
<style>
/* margin
功能:可以改变元素的位置
border--改变元素的宽度
padding--改变元素的 width,height
*/
div{
width: 100px;
height: 100px;
background: red;
margin-left: 100px;
margin-top: 100px;
border-width: 10px;
border-style: solid;
border-color: black;
padding-right: 20px;
padding-left: 20px;
padding-top: 30px;
padding-bottom: 30px;
}
</style>
</head>
<body>
<div>
</div>
</body>
</html>
2.4 水平居中
<!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>Document</title>
<style>
div{
text-align: center;
width: 200px;
height: 200px;
background-color: red;
/*元素水平居中*/
margin-left: auto;
margin-right: auto;
}
</style>
</head>
<body>
<div>hello world</div>
</body>
</html>
2.4 样式重置
<!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>Document</title>
<style>
/* 样式重置
写样式之前首先要进行样式重置
*/
*{margin: 0;padding: 0;}
</style>
</head>
<body>
<p>p</p>
<h1>h1</h1>
<div>div</div>
<inout type="text">
</body>
</html>