pc端布局和移动端布局通用样式总结

pc端通用样式:
@charset “utf-8”;
body,h1,h2,h3,h4,h5,h6,ol,ul,dl,dd,p,input,select,textarea,td{
margin:0;
padding:0;
}
body{
font-family:“微软雅黑”;
}
a{
text-decoration:none;
cursor: pointer;
}
ul,ol{
list-style:none;
}
img{
display: block;
}
移动端通用样式
@charset “utf-8”;
/* CSS Document */
body, h1, h2, h3, h4, h5, h6, ol, ul, dl, dd, p, input, select, textarea, td {
margin: 0;
padding: 0;
}
html,body{
height:100%;
}
html{
font-size: 26.67vw; }
a{
text-decoration:none;
color:black;
}
ul li{
list-style-type: none;
}
img{
display: block;
}
body{
display: flex;
flex-direction:column
}

你可能感兴趣的:(基本知识)