blob: 202ea4107f71b8132898e5674817fd874435bc36 [file] [edit]
<style>
.columns {
height: 60px;
width: 300px;
column-width: 300px;
widows: 2;
orphans: 1;
font-family: Monospace;
font-size: 15px;
}
.child::first-line {
color: red;
}
</style>
<div class=columns>
<div>
first div first line (not red).
</div>
<div class=child>
second div first line (red). <br>PASS if this line is NOT red when it appears in the second column.
</div>
</div>