[0015·css]最基本的样式规则设置

需要一个基础样式表,代码如下:

/* 如果是移动端或非ie浏览器可以不要这个 */
article, aside, figure, figcaption, footer, header, hgroup, nav, section, summary, canvas, ul, u2{
	display: block;
	}

/* 如下为都需要的 */
*{
	margin: 0; 
	padding: 0;
	list-style: none;
	text-decoration: none;
	font-family: 微软雅黑, 黑体, 宋体, Arial, Helvetica, sans-serif;
	}

html{
	width: 100%;
	min-width: 140px;
	min-height: 100%;
	}
	
body{
	width: 100%;
	min-height: 100%;
	}
	
body a{
	border: none;
	}

a img{
	border: none;
	}

本文会持续更新。

你可能感兴趣的:(css)