blob: 93043dd853e2d6b3eb1809be9cbc5e82952a2002 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
---
title: min-content
slug: Web/CSS/min-content
tags:
- CSS
- キーワード
- リファレンス
- min-content
- 大きさ
browser-compat: css.properties.width.min-content
translation_of: min-content
---
`min-content` は大きさのキーワードで、コンテンツの内在的な最小幅を表しています。テキストコンテンツの場合は、コンテンツがすべてのソフトラッピングの機会を使用した場合に、最も長い単語と同じくらい小さくなることを意味します。
## 構文
```css
/* 長さとして使用 */
width: min-content;
inline-size: min-content;
height: min-content;
block-size: min-content;
/* グリッドトラックで使用 */
grid-template-columns: 200px 1fr min-content;
/* グローバル値 */
min-content: inherit;
min-content: initial;
min-content: revert;
min-content: unset;
```
## 例
<h3 id="Using_min-content_for_box_sizing">min-content をボックスの大きさに使用</h3>
#### HTML
```html
<div class="item">Item</div>
<div class="item">Item with more text in it.</div>
```
#### CSS
```css
.item {
width: min-content;
background-color: #8ca0ff;
padding: 5px;
margin-bottom: 1em;
}
```
#### 結果
{{EmbedLiveSample("Using_min-content_for_box_sizing", "100%", 200)}}
<h3 id="Sizing_grid_columns_with_min-content">min-content をグリッド列の大きさに使用</h3>
#### HTML
```html
<div id="container">
Item
<div>
Item with more text in it.
</div>
Flexible item
</div>
```
#### CSS
```css
#container {
display: grid;
grid-template-columns: min-content min-content 1fr;
grid-gap: 5px;
box-sizing: border-box;
height: 200px;
width: 100%;
background-color: #8cffa0;
padding: 10px;
}
#container > div {
background-color: #8ca0ff;
padding: 5px;
}
```
#### 結果
{{EmbedLiveSample("Sizing_grid_columns_with_min-content", "100%", 200)}}
## 仕様書
{{Specifications}}
## ブラウザーの互換性
### width (および他の大きさのプロパティ) での対応
{{Compat}}
|