theme-reco
panxueyan 5/29/2020  
This is theme-reco.
# 好用的markdown语法---去掉个表格边框1
去掉表格边框
<style>
tr,td, th {
   border: none!important;
}
</style>
| Time         | Length        | Speed              | Mass         |
| ------------ | ------------- | ------------------ | ------------ |
| -Millisecond | Millimetre    | Kilometre per hour | Milligram    |
| Second       | Centimetre    | Foot per second    | Gram         |
| Minute       | Inch          | Miles per hour     | Ounce        |
 1
2
3
4
5
6
7
8
9
10
11
12
2
3
4
5
6
7
8
9
10
11
12
| Time | Length | Speed | Mass | 
|---|---|---|---|
| -Millisecond | Millimetre | Kilometre per hour | Milligram | 
| Second | Centimetre | Foot per second | Gram | 
| Minute | Inch | Miles per hour | Ounce | 
# 好用的markdown语法--去掉个表格边框2
去掉表格边框
<style>
table{
  border: none;
}
tr,td {
  border: none!important;
}
.td_right{
  text-justify: distribute-all-lines;
  text-align: justify;
  text-align-last:justify;
  font-weight: bold;
}
</style>
<table>
<tr >
  <td class="td_right">姓名:</td>
 
  <td width="200px">潘雪岩</td>
  <td class="td_right">性别:</td>
  <td width="200px">男</td>
</tr> 
<tr>
  <td class="td_right" width="100px">出生日期:</td>
  <td width="200px">1987.08</td>
  <td class="td_right" width="100px">现住地址:</td>
  <td width="200px">北京昌平</td>
</tr>
<tr>
  <td class="td_right" width="100px">毕业院校:</td>
  <td width="200px">绍兴纹理学院</td>
  <td class="td_right" width="100px">学历:</td>
  <td width="200px">统招本科</td>
</tr>
<tr>
  <td class="td_right" width="100px">专业:</td>
  <td width="200px">工商管理,国贸</td>
  <td class="td_right" width="100px">学位:</td>
  <td width="200px">双学士学位</td>
</tr>
<tr>
  <td class="td_right" width="100px">联系电话:</td>
  <td width="200px">15210142165</td>
  <td class="td_right" width="100px">电子邮箱:</td>
  <td width="200px">944851899@qq.com</td>
</tr>
</table>
 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
| 姓名: | 潘雪岩 | 性别: | 男 | 
| 出生日期: | 1987.08 | 现住地址: | 北京昌平 | 
| 毕业院校: | 绍兴纹理学院 | 学历: | 统招本科 | 
| 专业: | 工商管理,国贸 | 学位: | 双学士学位 | 
| 联系电话: | 15210142165 | 电子邮箱: | 944851899@qq.com | 
# 好用的markdown语法---html css 文本分散对齐,两端对齐
html css 文本分散对齐,两端对齐
<style>
    .justify{
        text-align-last:justify;
        text-align:justify;
        /* 这行必加,兼容ie浏览器 */
        text-justify:distribute-all-lines; 
    }
</style>
<table>
    <tbody>
        <tr>
            <th><th>
            <th><th>
            <th><th>
            <th class="justify"><th>
        </tr>
    </tbody>
</table>
 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
| 1 | 2 | 3 | 
|---|
# 好用的markdown语法---html P标签段落 CSS段落间距距离调整
一、line-height行高
我们对line-height的值设置越大,段落间距将会增大,同时字与字行距也会增加,不推荐用此line-height样式设置。
css代码:p{line-height:22px}
二、css padding内补白(内边距)
可以推荐使用padding设置段落上下间距。通过设置上下内补白,内距离即可实现p段落上下间距设置。
css代码:p{padding:10px 0}
三、css margin外边距
CSS段落间距调整之margin实现上下段落之间间距距离样式设置,我们知道margin是设置上下左右对象与对象之间距离设置,这里段落也可以使用此css样式实现间距。
css代码:p{margin:10px 0}
四、段落间距总结
网站文章分段,一般使用html p标签,而对分段间距设置我们推荐使用padding和margin实现,这样可轻松调间距距离,实现段与段之间距离排版美化。
# 好用的网站
- 颜色网: https://encycolorpedia.cn/named
 
# hr标签颜色设置
hr{ border: 1px solid; height: 1px; background-color: #40af7c; border-color: #40af7c;
}
hr { border: none; height: 2px; background-color:#40af7c; }