~~~
<title>Document</title>
<style>
div{
width:100px;
height:100px;
background: red;
margin-top: 100px;
margin-bottom: 100px;
}
a{
width:100px;
height:100px;
background: red;
margin-top: 100px;
margin-bottom: 100px;
}
img{
width:100px;
}
</style>
</head>
<body>
<!-- html标签的分类-->
<!-- 块标签 div,p,h1,ul,li,dl,dt,dd
特点:1.独占一行
2.能设置width,height
-->
<div>
div
</div>
<p>p</p>
<h1>h1</h1>
<ul>
<li>1</li>
<li>2</li>
</ul>
<dl>
<dt>dt</dt>
<dd>dd</dd>
</dl>
<!-- 内联标签 a,span,i,em,strong
1.并排显示
2.不能设置width,height
3.不能设置margin-top,margin-bottom
-->
<a href="#">a</a>
<span>span</span>
<i>i</i>
<em>em</em>
<strong>strong</strong>
<br>
<!-- 内联块 img,input,button
1.并排显示
2.能设置width,height
-->
<img src="images/timg.jpg" alt="">
<input type="text">
<button>btn</button>
</body>
~~~
- 第一天 Git
- 1.ssh的配置
- 2.ssh下载与上传
- 3.版本回退
- 第二天 html-css
- 1.Markdown语法
- 2.html
- 01
- 02选择器
- 03demo
- 04盒子模型
- 05样式重置
- 06水平居中
- 3.css
- 第三天 html-css
- 1.margin
- 2.padding
- 3.demo
- 4.html标签的分类
- 5.原理
- 6.水平居中
- 7.内联,内联块的水平居中
- 8.分组选择器
- 9.后代选择器
- 10.兄弟选择器
- 11.伪类
- 12.伪元素
- 13.优先级别
- 14.权重
- 第四天 html-css
- 1.链接
- 2.table
- 3.跨列表格
- 4.跨行表格
- 第五天
- 01.垂直水平居中
- 02.css样式
- 03.width,height的继承
- 04.垂直水平phone
- 06.nav
- 07.基础语法
- 08.for,if-else
- 09.对象
- 10.DOM
- 11.事件
- 12.jquery
- 13.点击变色
- 14.显示和隐藏
- 15.滚动顶部
- 第六天
- 01.margin的问题
- 02.margin
- 03.input
- 04.form
- 05.单选框
- 06.input与btn的区别
- 07.nav
- 08.jquery
- 09.获取input的值
- 10.vue