文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

CSS中怎么配置Normalize文件

2024-04-02 19:55

关注

CSS中怎么配置Normalize文件,很多新手对此不是很清楚,为了帮助大家解决这个难题,下面小编将为大家详细讲解,有这方面需求的人可以来学习下,希望你能有所收获。

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

  1.   
    *{margin:0;padding:0;list-style-type:none;}   
      
    *html,*html body {   
        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:13px;   
    }   
      
    a,img{border:none;text-decoration:none;}   
    a{blr:expression(this.onFocus=this.blur());}   
      
    :focus{outline:0;}   
    label{cursor:pointer;}   
    img{vertical-align:middle;}   
    table{empty-cells:show;border-collapse:collapse;border-spacing:0;}   
    h2{font-size:1.6em;}h3,h4,h5{font-size:1.4em;}h6,h7{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;}   
      
    

对与我的实际使用中,我有一个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文件
主要为如下文件:

CSS Code复制内容到剪贴板

  1. <!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]--> <!---->   
      
        <!--[if lt IE 9]>   
           <script src="js/html5.js"></script>   
        <![endif]-->   
      
    </head>   
    <body>   
    <!--wrapper-->   
    <div class="wrapper">   
        <!--header-->   
        <div class="header">   
            <!--logo-->   
            <div class="logo"></div>   
            <!--logo end-->   
            <!--navigation-->   
            <div class="nav">   
            </div>   
            <!--navigation  end-->   
      
            <!--banner-->   
            <div class="banner">   
            </div>   
            <!--banner-->   
      
        </div>   
        <!--header end-->   
      
        <!--container-->   
        <div class="container">   
            <!--news-->   
            <div class="news">   
            </div>   
            <!--news  end-->   
      
            <!--sidebar banner-->   
            <div class="sidebar">   
            </div>   
            <!--sidebar banner end-->   
      
            <!--hot top9-->   
            <div class="hot">   
            </div>   
            <!--hot top9-->   
      
        </div>   
        <!--container end-->   
      
        <!--footer-->   
        <div class="footer">   
            <!--about us-->   
            <div class="about-us"></div>   
      
            <!--webchat-->   
            <div class="webchat"></div>   
      
            <!--copyright-->   
            <div class="copyright"></div>   
        </div>   
        <!--footer end-->   
    </div>   
    <!--wrapper end-->   
    </body>   
    </html>

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

  1. <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" />

看完上述内容是否对您有帮助呢?如果还想对相关知识有进一步的了解或阅读更多相关文章,请关注编程网行业资讯频道,感谢您对编程网的支持。

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-前端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯