The attributes that can be inherited by inline elements in css are: text-shadow, line-height, word-spacing, letter-spacing, font-family, font-weight, font-size, font-style, font etc.
Inheritable attributes of inline elements in css
1. Inheritable text series properties for inline elements:
text-shadow: Set the text shadow
line-height: Line height
word-spacing: Increase or Reduce 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
In css, text series attributes other than text-indent and text-align, inline elements are Inheritable
2. Font family attributes that can be inherited by inline elements
font: combined font
font-family: specified element Font family
font-weight: Set the weight 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, meaning 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: Allows you to make text wider or narrower. Not supported by all major browsers.
font-size-adjust: Specifies an aspect value for an element. The ratio between the height of the lowercase letter "x" of the font and the height of "font-size" is called the aspect value of a font. This way you can maintain the x-height of your preferred font
For more programming-related knowledge, please visit:Getting Started with Programming! !
The above is the detailed content of What properties can be inherited by inline elements in CSS?. For more information, please follow other related articles on the PHP Chinese website!