blob: 2a3595b9afba86cf105072254d60a9c6f2a63d46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!DOCTYPE html>
<style>
.outer {
display: flex;
}
.inner {
padding-bottom: 6px;
padding-top: 10 px;
}
</style>
<body>
<div class="outer">
<ul class="inner">
Testing
</ul>
</div>
</body>
</html>
|