diff options
author | Alexey Pyltsyn <lex61rus@gmail.com> | 2021-10-24 01:39:03 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-24 01:39:03 +0300 |
commit | 86d50742d50fcb1fb4d151b5db6243173e5d377e (patch) | |
tree | 9698f5de4d1831213ae04c5c6f05a436e7a2ea32 /files/ru/web | |
parent | b346feac4b25e38cffc31ce21a450e4acf0bf306 (diff) | |
download | translated-content-86d50742d50fcb1fb4d151b5db6243173e5d377e.tar.gz translated-content-86d50742d50fcb1fb4d151b5db6243173e5d377e.tar.bz2 translated-content-86d50742d50fcb1fb4d151b5db6243173e5d377e.zip |
[RU] Fix live sample on visibility page
Diffstat (limited to 'files/ru/web')
-rw-r--r-- | files/ru/web/css/visibility/index.html | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/files/ru/web/css/visibility/index.html b/files/ru/web/css/visibility/index.html index 7875a63c16..ba74538e64 100644 --- a/files/ru/web/css/visibility/index.html +++ b/files/ru/web/css/visibility/index.html @@ -87,7 +87,7 @@ visibility: unset; <h4 id="HTML_2">HTML</h4> -<pre><code><table> +<pre class="brush: html"><table> <tr> <td>1.1</td> <td class="collapse">1.2</td> @@ -103,11 +103,11 @@ visibility: unset; <td>3.2</td> <td>3.3</td> </tr> -</table></code></pre> +</table></pre> <h4 id="CSS_2">CSS</h4> -<pre><code>.collapse { +<pre class="brush: css">.collapse { visibility: collapse; } @@ -117,7 +117,8 @@ table { td { border: 1px solid gray; -}</code></pre> +} +</pre> <p>{{EmbedLiveSample('Пример_с_таблицей')}}</p> |