From f72f05e350d8d5f7dbbcb2fb686a0db2db2fa3a3 Mon Sep 17 00:00:00 2001 From: Vitalii Perehonchuk Date: Fri, 12 Apr 2024 12:37:47 +0300 Subject: [PATCH] update(CSS): web/css/white-space --- files/uk/web/css/white-space/index.md | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) diff --git a/files/uk/web/css/white-space/index.md b/files/uk/web/css/white-space/index.md index 0ae002c663..060e7886b9 100644 --- a/files/uk/web/css/white-space/index.md +++ b/files/uk/web/css/white-space/index.md @@ -264,6 +264,47 @@ text { {{EmbedLiveSample("kilka-linii-u-elementi-svg-text", "100%", 150)}} +### Контроль перенесення в таблицях + +#### HTML + +```html + + + + + + + + + + + +
Дуже довгий вміст, що розриваєтьсяДуже довгий вміст, що не розривається
white-space:normalnowrap
+``` + +#### 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}}