CSS properties that may be used

  1. The caret-color attribute is used to define the color of the insertion cursor (caret)

  2. The caption-side attribute will place the title of the table in the specified position

  3. The cursor CSS property sets the type of cursor (if any), and displays the corresponding style when the mouse pointer hovers over the element.

  4. The @page rule is used to modify certain CSS properties when printing a document. You can't use the @page rule to modify all CSS properties, but you can only modify margin, orphans, widow and page breaks of the document. Modifications to other attributes are invalid.

  5. :left /* Set the left document style when printing*/
    @page :left { margin: 2in 3in; }

  6. @counter-style is a CSS at-rule that allows developers to customize the style of the counter. A @counter-style rule defines how to convert the value of a counter into a string representation.

  7. @import CSS@ rules are used to import style rules from other style sheets. These rules must precede all other types of rules, except for the @charset rule; because it is not a nested statement, @import cannot be used in the rules of a conditional group.

  8. The :right CSS pseudo-class must be used in conjunction with @rule@page, which means to print all the right pages of the document.

  9. The :out-of-range CSS pseudo-class represents an element whose current value is outside the range limited by the attributes min and max.
    10. The in-range CSS pseudo-class represents an element whose current value is within the range limited by the attributes min and max.

  10. The :read-only CSS pseudo-class represents the state where the element cannot be edited by the user (such as a locked text input box).

  11. The :read-write CSS pseudo-class represents an element (such as an input element that can enter text) that can be edited by the user.

From mdn Api: link .

Guess you like

Origin blog.csdn.net/qq_26889291/article/details/109842744