No title
HTML
快捷键
Shift+Alt+f 格式
Shift+Alt+up/down 复制
标题
标题跟SEO挂钩,不能乱用
1 | <h1><h1> |
h$*6
p,br,hr
段落,换行,水平线
1 | <hr color="red" width="300px" size="10px" align="left"> |
img
src
alt:替代文本
width
height(和width不同时用,防止拉伸)
title:悬停提示
a 超文本链接
1 | <a href="">内容,图片文字都可<a/> |
文本
1 | em 着重文字 |
列表
有序列表
1 | <ol type="I"> |
无序列表
1 | <ul type="circle"> |
快捷键
ul>li*3
表格
1 | <table> |
快捷键
1 | table>tr*2>td*2{text} |
合并单元格
1 | <td rowspan="3"> 合并不同行 |
Form
1 | <form action="" method="post"> |
元素分类
块级元素
div form h1~h6 hr p table ul
行内元素
a b em i span strong
行内块级
button img input
HTML5新增标签
1 | <header></header> |
CSS
引入方式
内联样式
没什么b用
1 | <p style="color:red;font-size:30px"> |
内部样式
也没什么b用
1 | <style> |
外部样式
1 | p{ |
1 | <link rel="stylesheet" href=""> |
选择器
全局选择器
1 | *{ |
元素选择器
1 | p{ |
类选择器
1 | .oneclass{ |
ID选择器
1 | <h2 id="mytitle"></h2> |
字体属性
color
1 | color:red; |
font-size
font-weight
1 | bold |
font-style
1 | italic 斜体 |
font-family
1 | "微软雅黑" |
背景属性
background-color
background-image
background-position
1 | left top |
background-repeat 图片 平铺
1 | repeat(default) |
background-size
1 | length |
文本属性
text-align
1 | left |
text-decoration 下划线
1 | underline |
text-transform
1 | captialize 单词开头大写 |
text-indent 缩进
1 | 50px |
表格属性
边框
1 | table,td{ |
折叠边框
把多余边框折叠
1 | border-collapse:collapse |
1 | width |
text-align:right
vertical-align:bottom
background-color
color
关系选择器
后代选择器
1 | E F{} |
子代选择器
1 | E>F{} |
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.