07reset&media.md

goer ... 2022-01-05 Css
  • Css
大约 3 分钟

reset和响应式媒体查询

[toc]

# 1.重置样式

HTML标签都有默认样式,这些默认样式对我们做页面时测量产生一定的影响

专门设置一个css文件reset.css清除样式

reset.css
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
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
老师的:reset.css

/* 清除默认样式 */
body,p,ul,ol,li,dl,dt,dd,h1,h2,h3,h4,h5,h6,form,fieldset,legend,input,select,textarea,button,th,td,menu{margin:0;padding:0;}
ul,dl,ol{list-style:none;}
img,fieldset,input[type="submit"]{border:0 none;}
em{font-style:normal;}
strong{font-weight:normal;}
table{border-collapse:collapse;border-spacing:0;}
button,input[type="button"]{cursor:pointer;border:0 none;}
a,button,input,img{-webkit-touch-callout:none;}
/*禁止图片的点击事件,例如长按保存图片*/
img{pointer-events:none;}
input,select,textarea{outline:none;}
a{text-decoration:none;}
.fl{ float: left;}
.fr{ float: right;}
.clear{clear:both;}
html,body{
/*禁止用户选择元素*/
-moz-user-select:none;
 -webkit-user-select: none;
-ms-user-select: none;
 -khtml-user-select:none; 
/*禁止元素点击出现半透明黑色背景*/
 -webkit-tap-highlight-color:rgba(0, 0, 0, 0); }
html {height: 100%;width: 100%;font-family: 'Heiti SC', 'Microsoft YaHei';outline: 0;-webkit-text-size-adjust:none;}
body {height: 100%;margin: 0;position: relative;}

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

兄弟们要有一定的ps技术噢:(因为我们要切图布局这些)

# (2) 文件的路径

文件路径的规范:(一般)

css   reset.css  common.css index.css css文件夹
		重置样式表   页面公共样式   首页的内容样式  其他页面内容样式
js     js文件夹  
images 切图文件夹
font   特殊字体文件夹
html   其他html的文件

index.html  首页
1
2
3
4
5
6
7
8

# (3) 媒体查询

响应式布局:适配更多分辨率的终端

注意:
1. 布局元素宽度用百分比  量的px/设计稿宽px
2. max-width,分辨率从大到小的顺序写
3. min-width,分辨率从小到大的顺序写
4. rem,当前设计稿宽下font-size的值
1
2
3
4
5
html{
    font-size:20px; /*当前1rem=20px,而且不在媒体查询范围内的值*/
}
min-widht:900px,最小从900开始顺序相反
@media screen and (max-width:1600px){
    /*分辨率在 1301-1600px之间时font-size得值*/
    /*如果大于1600px,就会设置默认的font-size:20px;*/
    html{
        font-size:40px;
    }
}
@media screen and (max-width:1300px){
    /*分辨率在 901-1300之间的*/
    html{
        font-size:30px;
    }
}
@media screen and (max-width:900px){
    /*分辨率在 900及其以下的的*/
    html{
        font-size:10px;
    }
}

style{
    div{
        width:10rem;
        heigh:20rem;
        background-color:blue;
        /* 改变分辨率,然后开div的大小呀 */
    }
}
<div></div>

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