blob: 2b96732a1ea52d8104082f7d0697cdcd0128c161 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
<!doctype html>
<style>
body * {
border: 5px solid red;
padding: 5px;
}
span {
display: inline-block;
width: 200px;
border-color: green;
}
.max-width-min-content,
.max-width-max-content,
.max-width-fit-content {
display: inline-block;
}
</style>
<div class="max-width-min-content">
<span>Min Content</span><br>on this box.
</div>
<br>
<div class="max-width-max-content">
<span>Max Content</span> on this box.
</div>
<br>
<div class="max-width-fill-available">
<span>Fill Available</span> on this box.
</div>
<div class="max-width-fit-content">
<span>Fit Content</span> on this box.
</div>
|