mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 07:05:24 +00:00
18 lines
332 B
HTML
18 lines
332 B
HTML
|
<!DOCTYPE html>
|
||
|
<html><head>
|
||
|
<style>
|
||
|
body > span::first-line { }
|
||
|
span::before { content:"before text"; border:3px solid black;}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
|
||
|
<span style=" float: left; -moz-column-count: 2;">
|
||
|
<span style="float: right;">
|
||
|
<span style=" float: right;-moz-column-count: 2;"></span>
|
||
|
</span>
|
||
|
</span>
|
||
|
|
||
|
</body>
|
||
|
</html>
|