1

次の CSS3 バックグラウンド ショートハンド プロパティを理解しようとしており、個々のプロパティに分解する必要があります。値の実際のプロパティが何であるかを把握できず98%center以下の省略形のプロパティで

background: url(../images/icon-error-small.png) no-repeat scroll 98% center #FFFFFF
4

3 に答える 3

2

背景プロパティの簡略表記:

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;
于 2013-06-19T05:45:20.080 に答える