Css-常用css初始化
/*PC初始化*/ * { padding: 0; margin: 0; border: 0; } body, html { width: 100%; height: 100%; min-width: 1024px; } body { font-size: 14px; font-family: "微软雅黑"; } ul, li { list-style: none; } input, button, select { outline: none; } input, button, select, a { cursor: pointer; } a.ord{ text-decoration: none; } /*Phone初始化*/ * { padding: 0; margin: 0; border: 0; } body, html { width: 100%; height: 100%; min-width: 320px; max-width: 750px; } body { font-size: 14px; font-family: "微软雅黑"; } ul, li { list-style: none; } input, button, select { outline: none; } input, button, select, a { cursor: pointer; } a.ord{ text-decoration: none; } /*Phone初始化 单位rem ---less*/ @rem:100rem; html{ font-size: 100px; } * { padding: 0; margin: 0; border: 0; } body, html { width: 100%; height: 100%; min-width: 320px; max-width: 750px; } body { font-size: 14px; font-family: "微软雅黑"; } ul, li { list-style: none; } input, button, select { outline: none; } input, button, select, a { cursor: pointer; } a.ord{ text-decoration: none; }