次の CSS3 バックグラウンド ショートハンド プロパティを理解しようとしており、個々のプロパティに分解する必要があります。値の実際のプロパティが何であるかを把握できず98%
、center
以下の省略形のプロパティで
background: url(../images/icon-error-small.png) no-repeat scroll 98% center #FFFFFF
背景プロパティの簡略表記:
background: [background-image] [background-repeat] [background-attachment] [background-position] [background-color];
壊れる時:
background-image: url(../images/icon-error-small.png);
background-repeat: no-repeat;
background-attachment: scroll;
background-position: 98% center;
background-color: #FFFFFF;