mirror of
https://github.com/servo/servo
synced 2026-05-12 01:46:28 +02:00
16 lines
285 B
HTML
16 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>
|