mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2026-04-19 10:20:22 +00:00
13 lines
185 B
HTML
13 lines
185 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<style>
|
||
|
|
div {
|
||
|
|
display: flex;
|
||
|
|
flex-direction: column;
|
||
|
|
}
|
||
|
|
span {
|
||
|
|
background-color: blue;
|
||
|
|
}
|
||
|
|
</style>
|
||
|
|
<div><button>foo</button></div>
|
||
|
|
<div><span>bar</span></div>
|