aboutsummaryrefslogtreecommitdiff
path: root/files/ru/web/css
diff options
context:
space:
mode:
Diffstat (limited to 'files/ru/web/css')
-rw-r--r--files/ru/web/css/visibility/index.html9
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>&lt;table&gt;
+<pre class="brush: html">&lt;table&gt;
&lt;tr&gt;
&lt;td&gt;1.1&lt;/td&gt;
&lt;td class="collapse"&gt;1.2&lt;/td&gt;
@@ -103,11 +103,11 @@ visibility: unset;
&lt;td&gt;3.2&lt;/td&gt;
&lt;td&gt;3.3&lt;/td&gt;
&lt;/tr&gt;
-&lt;/table&gt;</code></pre>
+&lt;/table&gt;</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>