Skip to content

Commit

Permalink
update(CSS): web/css/white-space
Browse files Browse the repository at this point in the history
  • Loading branch information
undead404 committed Apr 12, 2024
1 parent 78a292b commit f72f05e
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions files/uk/web/css/white-space/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -264,6 +264,47 @@ text {

{{EmbedLiveSample("kilka-linii-u-elementi-svg-text", "100%", 150)}}

### Контроль перенесення в таблицях

#### HTML

```html
<table>
<tr>
<td></td>
<td>Дуже довгий вміст, що розривається</td>
<td class="nw">Дуже довгий вміст, що не розривається</td>
</tr>
<tr>
<td class="nw">white-space:</td>
<td>normal</td>
<td>nowrap</td>
</tr>
</table>
```

#### CSS

```css
table {
border-collapse: collapse;
border: solid black 1px;
width: 250px;
height: 150px;
}
td {
border: solid 1px black;
text-align: center;
}
.nw {
white-space: nowrap;
}
```

#### Результат

{{EmbedLiveSample('kontrol-perenesennia-v-tablytsiakh', "100%", "100%")}}

## Специфікації

{{Specifications}}
Expand Down

0 comments on commit f72f05e

Please sign in to comment.