zoukankan      html  css  js  c++  java
  • prototype.css

    /*-----------------------------------------------------------------------------
    Prototype Style Sheet (empty commented stylesheet)
    
    version:   1.0
    author:    andy budd
    email:     info@andybudd.com
    website:   http://www.andybudd.com/
    -----------------------------------------------------------------------------*/
    
    /* =General
    -----------------------------------------------------------------------------*/
    
    
    /* Remove padding and margin */
    * {
      margin: 0;
        padding: 0;
    }
    
    /* Put it back on certain elements */
    h1, h2, h3, h4, h5, h6, p, pre, blockquote, form, fieldset, table, ul {
      margin: 1em 0;
    }
    
    /* Class for clearing floats */
    .clear {
        clear:both;
    }
    
    
    /* Remove border around linked images */
    img {
        border: 0;
    }
    
    
    /* =Typography
    -----------------------------------------------------------------------------*/
    
    body {
      font: 62.5%/1.6 "Lucida Grande", "Lucida Sans", "Trebuchet MS", Tahoma, Verdana, sans-serif;
    }
    
    
    /* =Headings
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Links
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Branding
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Main Nav
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Sub Nav
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Main Content
    -----------------------------------------------------------------------------*/
    
    
    
    
    /* =Secondary Content
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Footer
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Forms
    -----------------------------------------------------------------------------*/
    
    /* Removes fieldset borders. even on Opea 7 */
    fieldset {
      border: 1px solid transparent;
    }
    
    
    /* =Tables
    -----------------------------------------------------------------------------*/
    
    table { 
      border-spacing: 0;
        border-collapse: collapse;
    }
    
    td {
      text-align: left;
        font-weight: normal;
    }
    
    
    
    /* =Misc 1
    -----------------------------------------------------------------------------*/
    
    
    
    /* =Misc 2
    -----------------------------------------------------------------------------*/
  • 相关阅读:
    视频高清直播RTMP视频推流组件EasyRTMP-IOS版如何使用wchar_t*类型参数?
    设计模式
    算法学习【第10篇】:算法之动态规划问题
    算法学习【第9篇】:算法之斐波那契数列
    算法学习【第8篇】:贪心算法找零问题
    算法学习【第7篇】:算法之迷宫问题
    算法学习【第6篇】:算法之数据结构
    算法学习【第5篇】:常用排序算法(*******)
    算法学习【第4篇】:算法之---堆的简单介绍
    算法学习【第3篇】:树和二叉树简介
  • 原文地址:https://www.cnblogs.com/xiaokaike/p/3135311.html
Copyright © 2011-2022 走看看