Blogger Information
Blog 40
fans 3
comment 0
visits 48222
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
CSS标签选择小记
MArtian
Original
738 people have browsed it

1.引用css的方法有3种:

   1. HTML页面内部使用 <style></style>,该方法只对一个HTML文件生效
   2. <head>标签头部调用 <link rel="stylesheet" href='style.css'>
   3. @import调用 import url('style.css'),@import可以在<style>标签,或者.css文件第一行使用

2.CSS选择器的使用中,优先级尤为重要,顺序依次为:

<div style="">行内样式 > #id选择器 > 类选择器,属性选择器,伪类选择器 > 伪元素选择器,标签选择器

3.在一个标签元素被多个样式选择时,按照优先级来决定最终效果,如果选择器级别相同,那么按照代码的优先顺序决定结果。
例如: 4.上下文选择器,~ 和 + 可以按照[兄][弟]来理解,并不包含[兄]元素本身,生效的是[兄]元素之后[弟]的元素


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post