1. 背景の省略表現プロパティは、1 つのステートメントですべての背景プロパティを設定します:
background-color background-image background-repeat background-attachment background-position
例:
background: #444444 urlimage.png) no-repeat fixed top;
2. 境界の省略表現プロパティは、1 つのステートメントですべての境界プロパティを設定します:
border-width border-style border-color
例:
border:1px solid red;
3. font 省略記法属性は、1 つのステートメントですべてのフォント属性を設定します:
font-style font-variant font-weight font-size/line-height font-family
例:
font:italic bold 12px/20px arial,sans-serif;
4. リスト形式の省略記法属性は、1 つのステートメントですべてのリスト属性を設定します:
list-style-type list-style-position list-style-image
以上がCSS での一般的な略語の例の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。