mirror of
https://github.com/servo/servo.git
synced 2025-06-25 09:34:32 +01:00
15 lines
285 B
HTML
15 lines
285 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.outer-f {
|
|
color: red;
|
|
}
|
|
.fl-atomic {
|
|
display: inline-block;
|
|
}
|
|
.inner-f {
|
|
color: lime;
|
|
}
|
|
</style>
|
|
<div>
|
|
<span class="outer-f">FIRST</span> <div class="fl-atomic"><span class="inner-f">first</span><br>second</div> <span class="outer-f">FIRST</span>
|
|
</div>
|