CSS priority and inheritance issues
##★CSS conflict, that is, priority The settings of CSS itself can apply multiple styles to the same element at the same time. At this time, conflicts may occur between styles and the effect desired by the user cannot be achieved.
★Priority rules for resolving CSS conflicts: ● Priority of CSS cascading style sheet introduction methods: inline>embedded>linked >Imported
● Among multiple external styles, the style that appears later has a higher priority than the style that appears first, which is commonly known as override
● In the style, the priority of the selector: ID style >class style>Mark style (using weight metaphor: the weight of id is 100, the weight of class is 10, and the weight of tag name is 1)
● Add an !important after the style, for example: .abc { background:#fff !improtant;} The priority of this style will be raised to the top level by default, and the global style will not be able to affect it.
✪Note: !important should be written in front of the semicolon
Priority: Proximity principle (the closer to the code, the higher the priority)
The smaller the selection range, the higher the priority. Refine the CSS and wrap it layer by layer by adding more selectors of the parent element to narrow the selection range
★Style inheritance: Inheritance refers to our settings The CSS style of the upper level (parent), both the upper level (parent) and the following children (subordinates) have this attribute. Generally, only text text has inherited properties, such as text size, text boldness, text color, font, etc. But note that some CSS styles are not inherited. For example, border: 1px solid red;
<p style="color:red;">如果你不知道自己<span>想做什么该做什么</span>,那你什么都做不好。</p>
Description: (1) I set the text color of the superior (parent: p) to red, and the child The text color is not set for the level (span), but the text has inheritance properties, so the text content of the child level is still red. (2) If after setting the parent text color style, its multiple children will be the same as the parent due to inheritance. If the color of some children does not want to be the same as the parent, then you only need to set the required color for the corresponding child. Can.
✪Note: There is another special weight - inheritance also has a weight but it is very low. Some literature suggests that it is only 0.1, so it can be understood that inheritance has the lowest weight.
★Attributes that can and cannot be inherited in CSS
##1. Properties without inheritance 1. display: Specifies the type of box that the element should generate
2. Text attribute:
vertical-align: vertical text alignment
text- decoration: Specifies the decoration added to the text
text-shadow: Text shadow effect
white-space: White-space processing
unicode-bidi: Set the direction of the text
3. Attributes of the box model: width, height, margin, margin-top, margin-right, margin-bottom, margin-left, border, border-style, border-top-style, border-right- style, border-bottom-style, border-left-style, border-width, border-top-width, border-right-right, border-bottom-width, border-left-width, border-color, border-top- color, border-right-color, border-bottom-color, border-left-color, border-top, border-right, border-bottom, border-left, padding, padding-top, padding-right, padding-bottom, padding-left
4. Background attributes: background, background-color, background-image, background-repeat, background-position, background-attachment
5. Positioning attributes: float, clear, position, top, right, bottom, left, min-width, min-height, max-width, max-height, overflow, clip, z-index
6. Generate content attributes: content, counter-reset , counter-increment
7, outline style attributes: outline-style, outline-width, outline-color, outline
8, page style attributes: size, page-break-before, page -break-after
9. Sound style attributes: pause-before, pause-after, pause, cue-before, cue-after, cue, play-during
2. Inherited attributes1. Font family attributes
font: combined font
font-family: specifies the font family of the element
font-weight: Set the thickness of the font
font-size: Set the size of the font
font-style: Define the style of the font
font- variant: Sets the font in small caps to display the text, which means that all lowercase letters are converted to uppercase, but all letters in small caps have a smaller font size compared to the rest of the text.
font-stretch: Stretch and transform the current font-family. Not supported by all major browsers.
font-size-adjust: Specify an aspect value for an element so that the x-height of the preferred font is maintained.
2. Text series attributes
text-indent: text indent
text-align: text horizontal alignment
line-height: line height
Word-spacing: Increase or decrease the space between words (i.e. word spacing)
letter-spacing: Increase or decrease the space between characters (character spacing)
text- transform: Control text case
direction: Specify the writing direction of text
color: Text color
3. Element visibility: visibility
4. Table layout attributes: caption-side, border-collapse, border-spacing, empty-cells, table-layout
5, list layout attributes: list-style-type, list-style-image, list-style -position, list-style
6, generated content attributes: quotes
7, cursor attributes: cursor
8, page style attributes: page, page-break-inside , windows, orphans
9, sound style attributes: speak, speak-punctuation, speak-numeral, speak-header, speech-rate, volume, voice-family, pitch, pitch-range, stress, richness, , azimuth, elevation
3. Attributes that can be inherited by all elements
1. Element visibility: visibility
2 , Cursor attribute: cursor
4. Attributes that can be inherited by inline elements
1. Font family attributes
2 , Text series attributes other than text-indent and text-align
5. Attributes that block-level elements can inherit
1. text-indent、text-align
The above is the detailed content of About CSS priority and inheritance issues. For more information, please follow other related articles on the PHP Chinese website!

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver Mac version
Visual web development tools

SublimeText3 Linux new version
SublimeText3 Linux latest version

SublimeText3 Chinese version
Chinese version, very easy to use

SublimeText3 English version
Recommended: Win version, supports code prompts!

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
