您的位置:首页 > 移动开发

WapApp初始化样式表

2016-03-16 10:24 507 查看
@charset "utf-8";

/* 样式初始化
--------------------------------------------------*/
body {
margin: 0;
padding: 0;
background-color: #f6f6f6;
font: normal 67.5% Helvetica, Arial, sans-serif;
min-width: 240px;
}

* {
padding: 0;
margin: 0;
border: 0;
text-align: left;
font-style: normal;
font-weight: normal;
-webkit-tap-highlight-color: rgba(0,0,0,0);	/*禁止链接高亮*/
-webkit-touch-callout: none;					/*禁止链接长按弹出选项菜单*/
color:#333333;
}

ul li{
margin: 0;
padding: 0;
list-style: none;
}

img {
border-top-width: 0px;
border-right-width: 0px;
border-bottom-width: 0px;
border-left-width: 0px;
border-top-style: none;
border-right-style: none;
border-bottom-style: none;
border-left-style: none;
max-width: 100%;
}

nav, footer, section, header, article {
display: block;
}
ul {
list-style: none;
}
a:link {
-webkit-tap-highlight-color: rgba(0,0,0,0);	/*禁止链接高亮*/
-webkit-touch-callout: none;					/*禁止链接长按弹出选项菜单*/
}
a:link, a:visited, a:hover, a:active {
color: #333333;
text-decoration: none;
}

form{
margin:0px; padding:0px;
}


<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0" />

<link rel="stylesheet" href="css/base.css" type="text/css" media="screen" title="no title" charset="utf-8"/>
<link rel="stylesheet" href="css/index.css" type="text/css" media="screen" title="no title" charset="utf-8"/>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  表单 实例