mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
326 B
HTML
14 lines
326 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<style>
|
|
div { background: green; }
|
|
div::first-line { background-color: red; }
|
|
span.one { background: inherit; }
|
|
span.two { background-color: inherit; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div><span class="one">One</span><span class="two">Two</span></div>
|
|
</body>
|