Markdown

2017-11-06  本文已影响0人  相信自己_胡

A 我今天学了什么

1.html与css的区别

html是框架,css是修饰html的

2.常见html标签

1.p   段落标签
2.h1  标题标签
3.img 图片标签
4.input  输入框标签
5. button 普通按钮
6.div 块标签(盒子模型)
7.ul(li)无序列表
8.dl((dt)(dd))定义标签

3.常见css样式

1.color  颜色
2.background-color 背景颜色
3.width 宽度
4.height 高度
5.line-height 行高
6.background-img 背景图片

3.css选择器

1.p{}元素选择器
2..one{}class选择器
3.#two{}id选择器
4p:hover{}伪类别选择器

4.选择器优先级

important>id>class>p

.5盒子模型

1.border-width:边框的宽度;
2.border-style:边框的样式;
3.border-color:边框的颜色;
4.块元素居中:
             margin-left:auto;
             margin-right:auto;
5.消除隐藏边界:
padding:0;
margin:0;
6.margin    padding循序:
         顺时针

B今天掌握了什么

全部掌握了

C今天没掌握什么

全部掌握了

上一篇下一篇

猜你喜欢

热点阅读