zoukankan      html  css  js  c++  java
  • ID and CLASS

    CLASS ,ID and NAME

    Class is the class that sets the label.
    ID is the label that sets the label.
    The class attribute is used to specify which style the element belongs to.
    For example, a stylesheet can be added:
    .baobao {color: lime; background: #ff80c0}
    Method of use: class= "Baobao"
    The ID attribute is used to define the unique style of an element. Such as a CSS rule:

    #binbin {font-size: larger}
    Method of use: id= "Binbin"
    

    ID is a label used to distinguish different structures and contents, just like your school number. If 2 people in a class share the same student ID, there will be confusion.
    Class is a style that can be contained in any structure and content, just like a garment.
    Conceptually, it is different: ID first finds the structure / content, and then defines the style; class first defines a style, and then sets it to multiple structures / content.
    It is summed up in one sentence: Class can be used repeatedly, while ID can only be used once in a page. It is possible that the repeated use of the same ID in most browsers will not be a problem, but on the standard this is absolutely wrong, and is likely to lead to some browsers' real problems.
    In practical applications, Class may be more useful for typesetting, and ID is more useful for placing elements in macroscopical layout and design.
    I remember a friend and I said so: ID is a school number, name is the name, class is the name of the clothes can play the same, clothes can also wear the same, but the school number is the only one.

  • 相关阅读:
    自定义 ListView
    linux IO重定向
    Facebook开源C++组件库Folly
    在vi按了ctrl+s后
    让Erlang服务器后台运行
    mysql innodb 性能相关参数
    linux 网卡驱动升级
    kernel panic
    32位Linux下使用2G以上大文件的几个相关宏的关系
    CentOS安装erlang
  • 原文地址:https://www.cnblogs.com/hugeng007/p/9387190.html
Copyright © 2011-2022 走看看