zoukankan      html  css  js  c++  java
  • CSS 嵌入,及其选择器

    CSS

    1. CSS样式表的几种使用方式

    1.元素内嵌

    <p style="font-size"></p>

    2.内部文档内嵌

    <style type="text/css">
    	p{
        	font-family:Consolas;
            font-size:24px;
        }
    </style>
    
    <p> 这是个段落 </p>
    

    这样<p>标签就会表现出内部文档内嵌样式表的样式

    3.外部文档内嵌

    	<link  rel="stylesheet" type="text/css" herf="css/test.css">
    

    4.导入式

        <style type="text/css">
                //   导入式
                @import “css/test.css”
        </style>
    

    注:

    调用优先级别: 元素内嵌样式 > 内部文档内嵌 > 外部文档内嵌

    2. CSS 选择器

    1. 选择所有元素
     <!--style元素--> 
    <style type="text/css">
        *{
    
          }
    </style>
    
    1. 根据类型选择元素
    <!--style元素--> 
    <style type="text/css">
    	a{
    	}
        p{
        }
    </style>
    <!--body 元素-->
    <body>
    	<a> test </a>
        <p> Test </p>
    </body>
    
    1. 根据类选择元素
    <!--style 元素:-->
    <style type="text/css">
    	.class1{
        	
            }
    </style>
    <!--body 元素:-->
    <body>
    	<p class="class1">Test </p>
    </body>
    
    1. 根据ID 选择元素
    <!--style 元素:-->
    <style type="text/css">
    	#id1{
        
        }
    </style>
    <!--body 元素:-->
    <body>
        <p id="id1"> Test </p>
    </body>
    
    1. 根据属性选择元素
    <!--style 元素:-->
    <style type="text/css">
    	[href]{
        
        }
    </style>
    <!--body 元素:-->
    <body>
    	<a herf="test.html"> Test </a>
    </body>
    
    1. :选择器动作
    <!--style 元素:-->
    <style type="text/css">
         a:hover{
        }
    </style>
    <!--body 元素:-->
    <body>
      	<a> Test </a>
    </body>
    

  • 相关阅读:
    c++11 内存模型解读
    无锁队列的实现
    c++中的原子操作
    还是说Memory Model,gcc的__sync_synchronize真是太坑爹了
    对于Linux平台下C语言开发中__sync_函数的认识
    理解 Memory barrier
    pthread_barrier_init,pthread_barrier_wait简介
    explicit构造函数的作用
    droofs
    27.
  • 原文地址:https://www.cnblogs.com/Kernel001/p/CSS.html
Copyright © 2011-2022 走看看