标签:data 主机名 lin 邮件 through ref htm osi pos
上节课回顾:
HTML标签: 格式排版
p 段落 双
br 换行 单
hr 分隔线 单
h1~h6 标题 双
pre 原样格式化输出 双
div 标签,无任何特殊意义
HTML标签 :文本
<em> 强调 倾斜 双
<ruby></ruby> 加拼音
<rt></rt>
<strong> 加粗 强调 双
<mark></mark> 标记 选中 双
<sub></sub> 下标
<sup></sup> 上标
<ins></ins> 插入的内容
<del></del> 删除的内容
CSS: 在html中的使用
link 外部css 单 href type rel
<style> </style>
style属性
CSS选择器以及优先级
#id
.className
tagName
组合 selector1 selector2
组合 selector1>selector2
群组 selector1,selecotr2
and p.item .item.first-item p#nav <div class="item first-item">
*
选择器优先级
id > class > tagName
CSS属性: 字体 文本 颜色
font:[bold|style] size family
font-family:
font-size:
font-weight bold
font-style italic
font-variant: small-caps
color
word-spacing
letter-spacing
text-align left/right/center
vertical-align: middle/top/bottom
line-height
word-wrap: break-word / overflow-wrap
white-space: pre / pre-wrap
text-decoration: underline / overline / line-through / none
text-indent
CSS颜色和长度
# 颜色
colorName
rgb() rgb()
#十六进制
# 长度
px
em
百分比
CSS 尺寸 、内边距、 边框、 背景
width max-width min-width
height max-height min-height
border-style 边框风格 solid / dotted / dashed / double / none
border-width 边框宽度
border-color 边框颜色
border 复合属性 border: 1px solid #ccc
padding-left
padding-top
padding-right
padding-bottom
padding 使用注意点如下:
padding: 值; 上下左右
padding: 值1 值2; 上下 左右
padding: 值1 值2 值3; 上 左右 下
padding: 值2 值2 值3 值4; 上 右 下 左 后面要加单位px。
background-color 背景颜色 transparent
background-image 背景图片 url()
background-repeat 背景图片平铺 repeat no-repeat(不重复平铺)repeat-x(水平方向重复平铺) repeat-y(竖直方向重复平铺)
background-position 背景图片位置 10px,10px 根据坐标图片位置
background-attachment 背景图片固定 scroll / fixed
background 复合属性
background: #ccc url(‘../../dist/images_two/bg02.jpg‘) no-repeat 10px 10px
CSS Sprite 精灵图
把很多小的图片 集成到一张大图上
好处: 减少网络请求数量
href
target _blank / _self
title
download H5新增的
跳转网页
发短信
打电话
发邮件
相对路径 ./ ../
绝对路径 URL http://www.biadu.com/index.html
特殊的相对路径 /lesson/path/index.html
pointer / move / no-drop
设置锚点
第一种方式
<a name="锚点名字"></a>
第二种方式
随便一个元素
<tagname id="锚点的名字"></tagname>
跳转到指定锚点
<a href="#锚点名"></a>
http://www.badiu.com/path/demo/contents/index.php?a=100&b=300#mao1
协议protocol http
主机名hostname www.baidu.com / IP
路径 path /path/demo/contents/
文件名filename index.php
查询内容query ?a=100&b=300
锚点 #mao1
属性
src
title
alt
usemap
name
id
shape rect circle poly
coords
target
href
title
标签:data 主机名 lin 邮件 through ref htm osi pos
原文地址:https://www.cnblogs.com/Roc-Atlantis/p/9379631.html