Home >Web Front-end >CSS Tutorial >CSS hint properties

CSS hint properties

PHPz
PHPzforward
2023-09-12 10:25:021217browse

The

CSS 提示属性

cue attribute is shorthand for setting cue-before and cue-after. If two values ​​are given, the first value is cue-before and the second value is cue-after. If only one value is given, it applies to both properties.

Example

For example, the following two rules are equivalent -

<style>
   <!--
      h1 {cue-before: url("pop.au"); cue-after: url("pop.au") }
      h1 {cue: url("pop.au") }
   -->
</style>

The above is the detailed content of CSS hint properties. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:tutorialspoint.com. If there is any infringement, please contact admin@php.cn delete