Is it possible to target CSS3 columns individually with selectors?

The design I am working to has different backgrounds for alternate columns. Is it possible to set up different tiling backgrounds for each column,

eg

column:nth-child(n+1) {background:url(tile1.gif) repeat-x; }

Or do I have to fall back on a huge background image that tiles every two columns?


Unfortunately you cannot change the color of the columns:

It is not possible to set properties/values on column boxes. For example, the background of a certain column box cannot be set and a column box has no concept of padding, margin or borders.

From w3.org: 2. The multi-column model

链接地址: http://www.djcxy.com/p/65744.html

上一篇: 何时通过RDL报告使用RDLC?

下一篇: 是否有可能单独使用选择器来定位CSS3列?