Mozilla的CSS编写风格

/* mozilla.org Base Styles
 * maintained by fantasai
 * (classes defined in the Markup Guide - http://mozilla.org/contribute/writing/markup )
 */
/* Suggested order:
 * display
 * list-style
 * position
 * float
 * clear
 * width
 * height
 * margin
 * padding
 * border
 * background
 * color
 * font
 * text-decoration
 * text-align
 * vertical-align
 * white-space
 * other text
 * content
 *
 */

/* TOC:
   Random HTML Styles
     Forms
   General Structure
   Navigation
   Quotations
   Comments and Other Asides
   Emphasis
   Computers - General
   Code
   Examples and Figures
   Q and A (FAQ)
   Tables
   Headers
   Meta
   Specific to Products Pages
*/
/* Random HTML Styles */

    dt {
        font-weight: bold;
    }

    dd {
        margin: 0 0 1em 1em;
    }

    li {
        margin-top: 0.2em;
        margin-bottom: 0.2em;
    }

    sup {
        font-size: 70%;
    }

    form {
        margin: 0;
        display: inline;
    }

    label {
        font-weight: bold;
    }

/* General Structure */

    .subtitle {
        font-style: italic;
    }

    div.para {
        margin: 1em 0;
    }

    div.para > ul,
    div.para > ol,
    div.para > blockquote {
        margin-top: 0.2em;
        margin-bottom: 0.2em;
    }

    div.section {
        display: block;
        padding-left: 3%;
    }

    div.section > h2,
    div.section > h3,
    div.section > h4,
    div.section > h5,
    div.section > h6 {
        margin-left: -1.3%;
    }

    .block {
      display: block;
      margin: 0.1em 1em;
    }

    .imgright {
        float: right;
        margin: 0 0 2em 2em;
    }

    .first {
        margin-top: 0; /* For IE not understanding :first-child */
    }

/* Navigation */

    :link img,
    :visited img {
        border: 0;
    }
    .deepLevel #mainContent :link img,
    .deepLevel #mainContent :visited img {
        border: medium solid;
    }
    .deepLevel #mainContent #buttons :link img,
    .deepLevel #mainContent #buttons :visited img {
        border: 0;
    }

    .ex-ref {
        font-style: italic;
    }

    dl.toc dt {
        margin-top: 1em;
        font-size: 110%;
    }
    dl.toc p {
        margin: 0;
        text-indent: 1em;
    }
    dl.toc p:first-child {
        text-indent: 0;
    }
    dl.toc > dd {
        margin-left: 1em;
    }

    ol.toc ol {
        list-style-type: circle;
    }
    ol.toc > li > ol {
        font-size: 90%;
    }

    ul.snav {/* section navigation or short navigation, whichever you prefer */
        margin: 0.7em 10%;
        padding: .2em;
        text-align: center;
        list-style-type: none;
    }
    ul.snav > li {
        margin: 0;
        padding: 0;
    }
    ul.snav > li {
        display: inline;
    }
    ul.snav > li:before {
        content: " | ";
    }
    ul.snav > li:first-child:before {
        content: "";
    }

    @media screen, print, handheld, projection {
        p.crumbs em {
            display: none;
        }
    }

    #mainContent > p.crumbs:first-child,
    #side > p.crumbs:first-child {
        margin-top: 0;
    }

    a.cont {
        display: block;
        margin-right: 0;
        text-align: right;
    }

/* Quotations */

    blockquote > address {
        padding-left: 1em;
        text-indent: -1em;
    }
    blockquote > address:before {
        content: "\2015";
    }

    div.quote,
    div.epigraph {
        margin: 1em;
    }
    div.quote q,
    div.epigraph q {
        display: block;
        margin: 0 .5em;
        text-indent: -0.5em;
    }
    div.quote cite,
    div.epigraph cite {
        display: block;
        padding: 0 1em;
        text-align: right;
        text-indent: -1em;
    }
    div.quote cite:before,
    div.epigraph cite:before {
        content: "\2015";
    }

    blockquote.epigraph,
    div.epigraph q {
        font-style: italic;
        text-align: right;
    }
    blockquote.epigraph em,
    div.epigraph q em {
        font-style: normal;
    }
    blockquote.epigraph address,
    div.epigraph cite {
        font-style: normal;
    }

/* Comments and other Asides */

    .note {
        font-style: italic;
    }
    .note:before {
        content: "Note: ";
    }

    .remark {
        font-size: smaller;
    }
    .remark:before {
        content: "[";
    }
    .remark:after {
        content: "]";
    }

    .sidenote {
        clear: both;
        margin: 0.75em 0.5em;
        padding: 0.2em;
        border: 1px solid;

        /* Block NS4 from floating */ /*/*/
        float: right;
        width: 30%;
        min-width: 15em;
        /* */
    }
    /* Reduce main header sizes */
    .sidenote h1 {font-size: 1.40em;}
    .sidenote h2 {font-size: 1.25em;}
    .sidenote h3 {font-size: 1.10em;}

    .key-point > h1:first-child,
    .key-point > h2:first-child,
    .key-point > h3:first-child,
    .key-point > h4:first-child,
    .key-point > h5:first-child,
    .key-point > h6:first-child {
        margin-top: 0;
    }

/* Emphasis */

    /* em, strong */

    strong.stronger {
        font-style: italic;
        font-weight: bold;
    }

    strong.very-strong {
        font-weight: bold;
        text-transform: uppercase;
    }

    *.important,
    div.important,
    p.important {
        margin: 1em;
        padding: 0.1em;
        border: solid #F00;
        font-size: larger;
    }

    span.important {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: smaller;
        color: #c00;
    }

/* Computers - General */

    pre.screen {
        overflow: auto;
        margin: 1em 0.5em;
        padding: 0.2em;
        border: solid 1px;
        font-family: monospace;
        white-space: pre;
    }

    div.screen {
        margin: 1em .5em;
        padding: 0.2em;
        border: solid 1px;
    }

    span.application {
        font-style: italic;
    }

    kbd.long {
        display: block;
        margin: 0.1em 1em;
    }

    kbd.command,
    code.command {
        white-space: pre;
    }

    code.filename {
        font-style: italic;
        white-space: nowrap;
    }

/* Code */

    code, pre {
        /* override IE6 default */
        font-size: 1em;
    }

    code {
        white-space: nowrap;
    }
    code.long {
        display: block;
        margin: 0.1em 1em;
        white-space: normal;
    }

    pre.code {
        overflow: auto;
        margin: 1em .5em;
        padding: .2em;
        border: solid 1px;
    }

    pre.code .remark {
        font-size: 1em;
        font-style: italic;
    }

    /* turn off content generation */
    pre.code .remark:before,
    pre.code .remark:after,
    pre.code .note:before {
        content: "";
    }

/* Examples and Figures */

    .example {
        margin: 1em 3%;
        padding: .25em;
        border: solid;
    }
    .example:before {
        display: block;
        font-weight: bold;
        content: "Example";
    }
    .example[title]:before {
        content: "Example: " attr(title);
    }

    pre.bad,
    div.bad {
        border: dashed red 3px;
    }
    .bad.example:before {
        content: "Incorrect Example";
    }
    .bad.example[title]:before {
        content: "Incorrect Example: " attr(title);
    }

    pre.good,
    div.good {
        border: double lime 3px;
    }
    .good.example:before {
        content: "Correct Example";
    }
    .good.example[title]:before {
        content: "Correct Example: " attr(title);
    }

    .figure,
    .screenshot {
        display: block;
        margin: .75em auto;
    }
    object.figure object,
    object.screenshot object,
    object.figure img,
    object.screenshot object {
        display: block;
        margin: 0 auto;
    }
    .screenshot[title]:after,
    .figure[title]:after {
        display: block;
        margin: 0 8% .05em;
        font-style: italic;
        font-size: small;
        text-align: right;
        content: attr(title);
    }

    .co,
    .callout {
        text-decoration: underline;
    }

/* Q and A (FAQ) */

    .qandaset .question {
        font-size: large;
        font-weight: bold;
    }

    .qandaset .answer {
        margin-top: 1em;
    }

/* Tables */

    table.data {
        border-collapse: collapse;
        margin: 0.5em auto;
        border: 1px solid;
    }

    table.data caption {
        margin: 1em auto 0.2em;
        font-size: small;
        font-style: italic;
        text-align: center;
    }

    table.data th,
    table.data td {
        padding: 0.2em;
        border: 1px solid;
        vertical-align: baseline;
    }

    table.data tbody th:first-child {
        text-align: right;
    }

    table.data thead th {
        vertical-align: middle;
    }

/* Meta */

    address {
        text-align: right;
    }
    .author {
        margin-bottom: 1em;
        text-align: left;
    }

/* Headers */

    #mainContent > h1:first-child,
    #mainContent > h2:first-child,
    #mainContent > h3:first-child,
    #mainContent > h4:first-child,
    #mainContent > h5:first-child,
    #mainContent > h6:first-child,
    #side > h1:first-child,
    #side > h2:first-child,
    #side > h3:first-child,
    #side > h4:first-child,
    #side > h5:first-child,
    #side > h6:first-child {
        margin-top: 0;
    }

/* Specific to Products Pages */

.productlist {
    margin: 0;
    padding: 0 0 0 5px;
}

.productlist li {
    clear: left;
    list-style: none;
    padding: 0 0 1em 0;
    margin-left: 0;
}

.productlist h3 {
    margin: 0 0 0.2em 0;
}

.productlist img {
    float: left;
    margin: 0 0.5em 1em 0;
}

/* Random Stuff That Needs To Be Cleaned Up / Deprecated */

.flLeft {
    float: left;
    margin: 5px 10px 5px 0;
}
.flRight {
    float: right;
    margin: 5px 0 5px 10px;
}
时间: 2024-10-05 01:15:31

Mozilla的CSS编写风格的相关文章

CSS编写指导规范和建议

在参与规模庞大.历时漫长且参与人数众多的项目时,所有开发者遵守如下规则极为重要: 保持 CSS 易于维护 保持代码清晰易懂 保持 CSS 的可拓展性 为了实现这一目标,我们要采用诸多方法. 本文档第一部分将探讨语法.格式以及分析 CSS 结构:第二部分将围绕方法论.思维框架以及编写与规划 CSS 的看法. CSS 文档分析 无论编写什么文档,我们都应当维持统一的风格,包括统一的注释.统一的语法与统一的命名规范. 总则 将行宽控制在 80 字节以下.渐变(gradient)相关的语法以及注释中的

css编写注意事项(不定时更新)

CSS的编写是需要积累的,而一个好的css编写习惯对我们将来的成长是非常有利的,我会把我平时看到的或者遇到的会不定时的更新到这里,不时翻一下,但求有所进步. 如果各位看官也有看法和建议,评论下,我也会更新进来,谢谢! 1.css选择符是从右到左进行比配的,例如 #nav li,查找时先会去找到所有的li,然后再去筛选父元素,确定匹配的父元素......所以性能其实很差 所以尽量减少深度 2.减少inline  CSS的数量 3.使用现代合法的css属性 4.避免使用后代选择符 ,尽量使用子代选择

HTML+CSS编写规范

在任何一个项目或者系统开发之前都需要定制一个开发约定和规则,这样有利于项目的整体风格统一.代码维护和扩展.由于Web项目开发的分散性.独立性.整合的交互性等,所以定制一套完整的约定和规则显得尤为重要. 第一节 CSS样式文件的命名 建立样式表文件时,分类编写样式到下列样式表文件中,并统一放在[CSS]文件夹里: 主要 main.css 文字样式 font.css 表格 table.css 主题 themes.css 打印 print.css 补丁 mend.css 在项目初期,会把不同类别的样式

Emmet:HTML/CSS编写插件

http://www.iteye.com/news/27580 用法: http://docs.emmet.io/cheat-sheet/ sublime 2 添加:1. Ctrl+Alt+p -> install 2. emmet Emmet:HTML/CSS编写插件

个人css编写规范

前言:最近在做微信小程序,因为公司小,就我一个人弄前端的东西,js和页面都是我来弄,结果那天后台的人看到我的js代码,说我的代码写得不规范,函数什么的都很乱,弄得我羞愧难当,幸亏没看我的css,其实我的css命名也很随意==!一直觉得自己css其实还是可以的,但是突然发现自己到现在的css还没有很规范,很多名称什么的还很随意,有的地方用驼峰命名,有的又用横杠,有的还会用下划线,真的太随意了,所以就上网搜了搜命名规范,改了两天终于把样式全改过来了.因此做个小结: 意义:感觉规范css代码是非常有意

Protocol buffers编写风格指南

原文链接:https://developers.google.com/protocol-buffers/docs/style Style Guide 本文说明了.proto文件的编写风格指南.遵循这些约定,将使protocol buffer message的定义及其相应的类保持一致且易于阅读. Message And Field Names 对于message的命名,采用驼峰命名法(第一个字母大写),例如SongServerRequest.对于message中的字段,采用下划线分隔的方式命名,如

如何能提高CSS编写技巧 提高Web前端开发效率

如何能提高CSS编写技巧?怎么学好Web前端开发?很多人在学习Web前端时,刚开始都会学习HTML和CSS,HTML用于文本内容,CSS用于样式设计,掌握这两部分知识就可以进行简单的页面制作.不过如果耗时过长作品一般未免有些得不偿失,因此你需要掌握一些技巧,以提高CSS编写效率. 1.使用flex进行布局 flex弹性布局的出现是有原因的.浮动和inline-block虽然也能实现很多的布局效果,但它们本质上是文本和块元素布局的工具,而不是面向整个网页的.flex可以很容易的按照我们预期的方式创

CSS编写技巧

1.尽量少的使用全局的重置代码 全局重置代码:*{margin:0; padding:0;}对于熟悉CSS的人来说并不陌生,并且有很多人的第一句CSS代码就是这句.它可以避免不同浏览器的默认间距不同而造成的浏览器兼容性问题."*"在代码中一般都是代表通配符,在CSS中也是如此,可以代表所有的HTML元素.虽可以杜绝很多代码在浏览器之间的兼容问题,但是这种写法会降低CSS解析的效率.我们有更好的解决办法,就是用下面这种写法: html, body, div, dl, dt, dd, ul

css编写规范

一.注释规范 1.文件顶部注释(推荐使用) Css代码 /* * @description: 中文说明 * @author: name * @update: name (2013-04-13 18:32) */ 2.模块注释 模块注释必须单独写在一行 Css代码 /* module: module1 by 张三 */ … /* module: module2 by 张三 */ 3.单行注释与多行注释 单行注释可以写在单独一行,也可以写在行尾,注释中的每一行长度不超过40个汉字,或者80个英文字符