blob: 452f043198b90aacea3b2b391f4a59a4ef161cb3 (
plain)
1
2
3
4
5
6
7
8
|
<!DOCTYPE html>
<style>
div { color: red; border: 10px solid green; column-count: 2 }
div::first-line { color: green; border: 10px solid red; }
</style>
<div>
<span style="border: inherit">Some text</span>
</div>
|