首页 web前端 css教程 关于CSS Normalize的文件配置

关于CSS Normalize的文件配置

Jun 12, 2018 pm 04:04 PM
css

这篇文章主要介绍了CSS Normalize文件配置示例,对全局项目进行设置,需要的朋友可以参考下

作为前端工程师,很多人都有自己的一套CSS Normalize文件,这样能省掉开发过程中的不少麻烦,提高工作效率。在前人的基础上,我总结了自己的CSS Normalize文件,目前基本上每个项目都有在使用中:

/*Normalize*/
*{margin:0;padding:0;list-style-type:none;}   
*html,*html body /* 修正IE6振动bug */{   
    background-image:url(about:blank);   
    background-attachment:fixed;   
}   
body{   
    font-family:"Microsoft Yahei","Hiragino Sans GB" ,Arial,Lucida,Verdana,SimSun,Helvetica,sans-serif;   
    /*font-size : 62.5%; px数值除以10,然后换上em作为单位*/
    /*min-width:980px;*/
    font-size:13px;   
}   
a,img{border:none;text-decoration:none;}   
a{blr:expression(this.onFocus=this.blur());} /*去掉a标签的虚线框,避免出现奇怪的选中区域*/
/*a:active {test:expression(target="_blank");}*/
:focus{outline:0;}   
label{cursor:pointer;}   
img{vertical-align:middle;}   
table{empty-cells:show;border-collapse:collapse;border-spacing:0;}   
h1{font-size:1.6em;}h2,h3,h4{font-size:1.4em;}h5,h6{font-size:1.2em;}   
input{border:none;}   
textarea{overflow:scroll;}   
a, input,textarea, .hover-delay {   
    font-family:"Microsoft Yahei","Hiragino Sans GB", Arial,Lucida,Verdana,SimSun,Helvetica,sans-serif;   
    -webkit-transition: all 0.3s ease-out;   
    -moz-transition: all 0.3s ease-out;   
    -ms-transition: all 0.3s ease-out;   
    -o-transition: all 0.3s ease-out;   
    transition: all 0.3s ease-out;   
}   
input.none-radius{   
    border-radius:0;   
    -moz-border-radius:0;   
    -webkit-border-radius:0;   
}   
input::-ms-clear{ display:none;}  //去掉输入框的叉叉   
.clear{clear:both;}   
.txt-indent{text-indent:-999px;overflow:hidden;}   
input[type=text],input[type=tel],input[type=email]{   
-webkit-appearance: none;   
 box-shadow: none;}   
/*Normalize end*/
登录后复制

对与我的实际使用中,我有一个Template文件夹(最近新增了一个针对Mobile)

里面的文件夹大致分为如下:

1)images: 存放项目中的图片(里面又会根据项目模块进行文件夹划分)
2)css: 存放css文件(里面会有一个base.css文件,预置上文中的css normalize)
3)js:存放js文件,里面还有一个vender的文件夹,存放插件js(例如:jQuery库),外面有main.js(主要js文件),plugins.js(插件引用的js)

根目录下,为index.html文件
主要为如下文件:

<!doctype html>   
<!--[if lt IE 7]>      <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->   
<!--[if IE 7]>         <html class="no-js lt-ie9 lt-ie8"> <![endif]-->   
<!--[if IE 8]>         <html class="no-js lt-ie9"> <![endif]-->   
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->   
<head lang="zh-CN">   
    <meta charset="utf-8" />   
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />   
    <title>xxx</title>   
    <meta name="keywords" content="xxx" />   
    <meta name="description" content="xxx" />   

    <link rel="shortcut icon" href="images/favicon.ico" /> <!-- IE address前ico图标 -->   
    <link rel="stylesheet" href="css/normalize.css" /> <!-- reset style -->   
    <link rel="stylesheet" href="css/base.css" /> <!-- basic style -->   

    <script src="js/vendor/jquery-1.10.2.min.js"></script> <!-- jQuery library -->   
    <script src="js/vendor/jquery-ui-1.11.1.js"></script> <!-- jQuery UI library -->   
    <script src="js/main.js"></script> <!-- main js -->   
    <script src="js/plugins.js"></script> <!-- plugins  -->   

    <!--[if (gte IE 6)&(lte IE 8)]>     
      <script type="text/javascript" src="js/vendor/selectivizr.js"></script>   
      <noscript><link rel="stylesheet" href="[fallback css]" /></noscript>   
    <![endif]--> <!--/*修正CSS3在IE6-8*/-->   

    <!--[if lt IE 9]>   
       <script src="js/html5.js"></script>   
    <![endif]-->   

</head>   
<body>   
<!--wrapper-->   
<p class="wrapper">   
    <!--header-->   
    <p class="header">   
        <!--logo-->   
        <p class="logo"></p>   
        <!--logo end-->   
        <!--navigation-->   
        <p class="nav">   
        </p>   
        <!--navigation  end-->   

        <!--banner-->   
        <p class="banner">   
        </p>   
        <!--banner-->   

    </p>   
    <!--header end-->   

    <!--container-->   
    <p class="container">   
        <!--news-->   
        <p class="news">   
        </p>   
        <!--news  end-->   

        <!--sidebar banner-->   
        <p class="sidebar">   
        </p>   
        <!--sidebar banner end-->   

        <!--hot top9-->   
        <p class="hot">   
        </p>   
        <!--hot top9-->   

    </p>   
    <!--container end-->   

    <!--footer-->   
    <p class="footer">   
        <!--about us-->   
        <p class="about-us"></p>   

        <!--webchat-->   
        <p class="webchat"></p>   

        <!--copyright-->   
        <p class="copyright"></p>   
    </p>   
    <!--footer end-->   
</p>   
<!--wrapper end-->   
</body>   
</html>
登录后复制

Mobile下的head会有如下meta设置:

<meta name="viewport" id="viewport" content="width=device-width, initial-scale=1, user-scalable=no" />   
<meta name="apple-mobile-web-app-capable" content="yes" />   
<meta name="apple-touch-fullscreen" content="yes" />   
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
登录后复制

值得一提的是,在github上也有做了一个 normalize.css 文件,我在做HTML5项目也将其应用在normalize中。 

另外,对于很多开发中来说,Template文件同样是节省了不少写重复代码的时间,同时,又规范了自己的书写习惯。

以上就是本文的全部内容,希望对大家的学习有所帮助,更多相关内容请关注PHP中文网!

相关推荐:

CSS的变量variable的解析

CSS的positon属性的分析

以上是关于CSS Normalize的文件配置的详细内容。更多信息请关注PHP中文网其他相关文章!

本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn

热AI工具

Undresser.AI Undress

Undresser.AI Undress

人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover

AI Clothes Remover

用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool

Undress AI Tool

免费脱衣服图片

Clothoff.io

Clothoff.io

AI脱衣机

AI Hentai Generator

AI Hentai Generator

免费生成ai无尽的。

热门文章

R.E.P.O.能量晶体解释及其做什么(黄色晶体)
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.最佳图形设置
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.如果您听不到任何人,如何修复音频
4 周前 By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O.聊天命令以及如何使用它们
4 周前 By 尊渡假赌尊渡假赌尊渡假赌

热工具

记事本++7.3.1

记事本++7.3.1

好用且免费的代码编辑器

SublimeText3汉化版

SublimeText3汉化版

中文版,非常好用

禅工作室 13.0.1

禅工作室 13.0.1

功能强大的PHP集成开发环境

Dreamweaver CS6

Dreamweaver CS6

视觉化网页开发工具

SublimeText3 Mac版

SublimeText3 Mac版

神级代码编辑软件(SublimeText3)

bootstrap怎么写分割线 bootstrap怎么写分割线 Apr 07, 2025 pm 03:12 PM

创建 Bootstrap 分割线有两种方法:使用 标签,可创建水平分割线。使用 CSS border 属性,可创建自定义样式的分割线。

HTML,CSS和JavaScript的角色:核心职责 HTML,CSS和JavaScript的角色:核心职责 Apr 08, 2025 pm 07:05 PM

HTML定义网页结构,CSS负责样式和布局,JavaScript赋予动态交互。三者在网页开发中各司其职,共同构建丰富多彩的网站。

vue中怎么用bootstrap vue中怎么用bootstrap Apr 07, 2025 pm 11:33 PM

在 Vue.js 中使用 Bootstrap 分为五个步骤:安装 Bootstrap。在 main.js 中导入 Bootstrap。直接在模板中使用 Bootstrap 组件。可选:自定义样式。可选:使用插件。

bootstrap怎么插入图片 bootstrap怎么插入图片 Apr 07, 2025 pm 03:30 PM

在 Bootstrap 中插入图片有以下几种方法:直接插入图片,使用 HTML 的 img 标签。使用 Bootstrap 图像组件,可以提供响应式图片和更多样式。设置图片大小,使用 img-fluid 类可以使图片自适应。设置边框,使用 img-bordered 类。设置圆角,使用 img-rounded 类。设置阴影,使用 shadow 类。调整图片大小和位置,使用 CSS 样式。使用背景图片,使用 background-image CSS 属性。

bootstrap怎么调整大小 bootstrap怎么调整大小 Apr 07, 2025 pm 03:18 PM

要调整 Bootstrap 中元素大小,可以使用尺寸类,具体包括:调整宽度:.col-、.w-、.mw-调整高度:.h-、.min-h-、.max-h-

bootstrap怎么设置框架 bootstrap怎么设置框架 Apr 07, 2025 pm 03:27 PM

要设置 Bootstrap 框架,需要按照以下步骤:1. 通过 CDN 引用 Bootstrap 文件;2. 下载文件并将其托管在自己的服务器上;3. 在 HTML 中包含 Bootstrap 文件;4. 根据需要编译 Sass/Less;5. 导入定制文件(可选)。设置完成后,即可使用 Bootstrap 的网格系统、组件和样式创建响应式网站和应用程序。

bootstrap按钮怎么用 bootstrap按钮怎么用 Apr 07, 2025 pm 03:09 PM

如何使用 Bootstrap 按钮?引入 Bootstrap CSS创建按钮元素并添加 Bootstrap 按钮类添加按钮文本

bootstrap怎么看日期 bootstrap怎么看日期 Apr 07, 2025 pm 03:03 PM

答案:可以使用 Bootstrap 的日期选择器组件在页面中查看日期。步骤:引入 Bootstrap 框架。在 HTML 中创建日期选择器输入框。Bootstrap 将自动为选择器添加样式。使用 JavaScript 获取选定的日期。

See all articles