mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-02 22:37:50 +00:00
20 lines
252 B
HTML
20 lines
252 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.outer {
|
|
display: flex;
|
|
}
|
|
.inner {
|
|
padding-bottom: 6px;
|
|
padding-top: 10 px;
|
|
box-shadow: inset 0 0 0 0 #000;
|
|
}
|
|
</style>
|
|
<body>
|
|
<div class="outer">
|
|
<ul class="inner">
|
|
Testing
|
|
</ul>
|
|
</div>
|
|
</body>
|
|
</html>
|