- From: Yves Lafon <ylafon@w3.org>
- Date: Fri, 8 Jan 2010 15:50:15 -0500 (EST)
- To: www-style@w3.org
Hi,
In [1], Example XV:
p { background: url("chess.png") / 10em gray
40% round fixed border border}
is equivalent to
p {
background-color: gray;
background-position: 40% 50%;
background-size: 10em 10em;
background-repeat: round round;
background-clip: border-box;
background-origin: border-box;
background-attachment: fixed;
background-image: url(chess.png) }
However... background-position occurs after background-size, despite the
spec saying:
"where <bg-position> must occur before / <bg-size> if both are present"
[1] http://www.w3.org/TR/2009/CR-css3-background-20091217/#the-background
--
Baroula que barouleras, au tiéu toujou t'entourneras.
~~Yves
Received on Friday, 8 January 2010 20:50:17 UTC