mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 01:35:08 +02:00
28 lines
472 B
HTML
28 lines
472 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
figure {
|
|
display: table;
|
|
border: 2px solid blue;
|
|
}
|
|
figcaption {
|
|
display: table-caption;
|
|
border: 2px solid red;
|
|
}
|
|
.table-content {
|
|
width: 100px;
|
|
height: 50px;
|
|
border: 1px solid green;
|
|
}
|
|
.caption-content {
|
|
height: 30px;
|
|
border: 1px solid orange;
|
|
}
|
|
</style>
|
|
<figure>
|
|
<div class="table-content"></div>
|
|
<figcaption>
|
|
Caption text
|
|
<div class="caption-content"></div>
|
|
</figcaption>
|
|
</figure>
|