| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title>Column-span:all, then columns</title> | |
| </head> | |
| <body> | |
| <p>You should see the word 'PASS' twice below (letter spacing will differ), and no red:</p> | |
| <div style="-webkit-columns:4; columns:4; -webkit-column-gap:0; column-gap:0; width:4em;"> | |
| <div style="background:red;"> | |
| <div style="-webkit-column-span:all; column-span:all;">PASS<br> </div> | |
| </div> | |
| P<br>A<br>S<br>S | |
| </div> | |
| </body> | |
| </html> |