系统快捷键 1:windows+d 返回左面 2:windows+e 打开你的电脑资源页面 3:alt+tab 切换页面 webstorm快捷键: 1:tal键 快速创建标签 代码缩进 2:ctrl+d 删除光标所在行 3:ctrl+/ ctrl+shift+/ 快速添加注释多行注释 在js里分别为添加单行注释和添加多行注释 4:ctrl+alt+下方向键 快速复制一行 5:alt+上下方向键,快速移动当前代码 6:ctrl+y 反撤销(取消撤销)
<html>:定义html文档,超文本标签语言 浏览器:IE9以上
<head>:描述网页信息 元数据
<title>:网页标题 ;
<link>:链接CSS文件 ;标题图标:<link rel="icon" type="images/x-icon" href="img/tushu.png">
链接CSS文件:<link rel="stylesheet" type="textt/css" href="css/style.css">
防止中文乱码,万国码:<meta charset="utf-8"> ;
搜索关键字:<meta name="ketwords"content="图书管理,系统">;
描述:<meta name="description"content="系统介绍">
<div>:分区标签 nav/div-ul-li;图文混编:div-dl-dt-dd;图文布局:table-tr-td
<标签 属性="">
HTML注释:<!-- -->
标题标签 :
<h1>一级标题</h1>
<h2>二级标题</h2>
<h3>三级标题</h3>
<h4>四级标题</h4>
<h5>五级标题</h5>
<h6>六级标题</h6>
<p>段落</p>
<br/>:回车,换行
<blockquote cite="作者"></blockquote>:引用
<pre></pre>:预格式标签
:空格
<ol><li></li></ol>:有序列表
<ul><li></li></ul>:无序列表
<dl><dt>标题/图片</dt><dd>描述</dd></dl>:定义描述列表
<figure>图文混编<img src=""><figcaption></figcaption></figure>
行级标签:
<img>:图片
<em>:强调
<a>:超链接
<i>:倾斜
<span>:文本<p><span style=";"></span><p>
W3C:万维网联盟:H5、CSS、DOM、
<a>:<a href="">页面间跳转</a> ;相对路径:../一个文件夹目录; 绝对地址:"http://www.sohu.com"
<a target="_blank"
rel="prefetch">当前网页跳转新打开网页,预加载
<a name="md">这是锚点</a>
<a href="#">回到顶部</a>
<img src=""
alt=""加载不出来时的文本说明
width=""
height="">
<style="display:inline_blook;">
看不到的:
<data>:存数据
<time>:时间
<mark>:高亮
表格:
<table border="1px"宽>
<tr>:行
<td>第一个单元格</td>
</tr>
<th>
</table>
border:边
cellspacing:单元格与单元格之间的距离
cellpadding:单元格内容与单元格的距离
width:宽
height:高
aline:表格的位置 center中间
bgcolor="":背景颜色
background:背景图
bordercolor=“”
colspan:跨列
rowspan:跨行
表单:
<form>一般和table连用<form action="ch02_01.html"method="post/get">超链接<form id="">
input:text
password,
radio:单选,
checkbox:多选,
reset:重置,
file:文件上传,
submit:提交
date:日期
number:数字
range:一个滑动条效果
color:选择颜色格式
form:所属表单
placeholder:提示信息
required:非空校验
pattern:"/":与格式保持一致
select:下拉选择<option></option>
textarea:文字区块
<fieldset>:表单外框<legend></legend>
布局标签:
header:头部
nav:菜单
hgroup:标题组合
footer:尾部
aside:侧边栏
<progress max(设置长度)>:进度条
<head>
内部样式:
<style type="text/css">
选择器{
对象的属性1:属性值1;
对象的属性2:属性值2;}
</style>
</head>
标签选择器:当前网页同类标签的元素
类选择器(class):.类名{}
ID选择器:#li_data{}起个id名
CSS使用方式:
内部样式
外部样式: <link href="style.css"rel="stylesheet"type="text/css">
行内样式
文本属性:
font:
font-style:italic:字体倾斜
font-weight: lighter:字体粗细
font-size:大小
line-height:行高与height一致
font-family: sans-serif非衬线体
text-aline:文本文字在水平方向的位置
letter-spacing:字符间距
opacity:透明度
overflow:hidden/scroll溢出
text-indent:缩进:20px
text-decoration:underline下划线
white-space:nowrap:不断行
.container p:后代选择器
图片:
background-image:url('')
background-repeat:repeat-x;横向平铺
background-position:0px 50px:x坐标y坐标
ul{list-style:none;}无点
float:left;水平摆放
display:inline-block:一行一块
margin:外边距 水平方向上边距相加;垂直方向上谁大用谁
padding:内边距
overflow:文字溢出
border-radius:边框的圆角矩形
border-image:
box-shadow:阴影
outline:边框不占空间
float:浮动 right left none
.clearfix:after{
content='';
display=table;
clear=both;}清除浮动的方式
定位:
positon:static
relative:相对属性:参照自己坐标
absolute:绝对定位:<div class="parent"><div class="child"></div></div>参照网页坐标
fixed
top
right
bottom
left
z-index
一般父元素相对定位,子元素绝对定位
CSS3
过渡效果
a{transition: all 1s ;}过渡效果
transform: translate(200px,0px);一个元素从这个地方到另一个地方
display: none;隐藏
display: block;显示