diff options
author | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
---|---|---|
committer | Peter Bengtsson <mail@peterbe.com> | 2020-12-08 14:42:52 -0500 |
commit | 074785cea106179cb3305637055ab0a009ca74f2 (patch) | |
tree | e6ae371cccd642aa2b67f39752a2cdf1fd4eb040 /files/ru/web/css/inline-size/index.html | |
parent | da78a9e329e272dedb2400b79a3bdeebff387d47 (diff) | |
download | translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.gz translated-content-074785cea106179cb3305637055ab0a009ca74f2.tar.bz2 translated-content-074785cea106179cb3305637055ab0a009ca74f2.zip |
initial commit
Diffstat (limited to 'files/ru/web/css/inline-size/index.html')
-rw-r--r-- | files/ru/web/css/inline-size/index.html | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/files/ru/web/css/inline-size/index.html b/files/ru/web/css/inline-size/index.html new file mode 100644 index 0000000000..69829347df --- /dev/null +++ b/files/ru/web/css/inline-size/index.html @@ -0,0 +1,100 @@ +--- +title: inline-size +slug: Web/CSS/inline-size +translation_of: Web/CSS/inline-size +--- +<div>{{CSSRef}}</div> + +<p>Свойство <a href="/en-US/docs/Web/CSS" title="CSS">CSS</a> <strong><code>inline-size</code></strong> определяет горизонтальные или вертикальные размеры блока в зависимости от режима написания (writing mode). Оно соответствует свойствам {{cssxref("width")}} и {{cssxref("height")}} и зависит от свойства {{cssxref("writing-mode")}}.</p> + +<div>{{EmbedInteractiveExample("pages/css/inline-size.html")}}</div> + + + +<h2 id="Syntax">Syntax</h2> + +<pre class="brush:css no-line-numbers notranslate">/* <length> values */ +inline-size: 300px; +inline-size: 25em; + +/* <percentage> values */ +inline-size: 75%; + +/* Keyword values */ +inline-size: max-content; +inline-size: min-content; +inline-size: fit-content(20em); +inline-size: auto; + +/* Global values */ +inline-size: inherit; +inline-size: initial; +inline-size: unset; +</pre> + +<p>Если режим написания (writing mode) — вертикальный, значение <code>inline-size</code> относится к высоте элемента; в противном случае, оно относиться к ширине элемента. Связанное свойство — {{cssxref("block-size")}}, которое определяет другие размеры элемента.</p> + +<h3 id="Значения">Значения</h3> + +<p>Свойство <code>inline-size</code> принимает те же значения, что и свойства {{cssxref("width")}} и {{cssxref("height")}}.</p> + +<h2 id="Formal_definition">Formal definition</h2> + +<p>{{cssinfo}}</p> + +<h2 id="Formal_syntax">Formal syntax</h2> + +<pre class="syntaxbox notranslate">{{csssyntax}}</pre> + +<h2 id="Examples">Examples</h2> + +<h3 id="Setting_inline_size_in_pixels">Setting inline size in pixels</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html notranslate"><p class="exampleText">Example text</p> +</pre> + +<h4 id="CSS">CSS</h4> + +<pre class="brush: css notranslate">.exampleText { + writing-mode: vertical-rl; + background-color: yellow; + inline-size: 110px; +}</pre> + +<h4 id="Result">Result</h4> + +<p>{{EmbedLiveSample("Setting_inline_size_in_pixels")}}</p> + +<h2 id="Specifications">Specifications</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Specification</th> + <th scope="col">Status</th> + <th scope="col">Comment</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("CSS Logical Properties", "#propdef-inline-size", "inline-size")}}</td> + <td>{{Spec2("CSS Logical Properties")}}</td> + <td>Initial definition</td> + </tr> + </tbody> +</table> + +<h2 id="Browser_compatibility">Browser compatibility </h2> + + + +<p>{{Compat("css.properties.inline-size")}}</p> + +<h2 id="See_also">See also</h2> + +<ul> + <li>The mapped physical properties: {{cssxref("width")}} and {{cssxref("height")}}</li> + <li>{{cssxref("writing-mode")}}</li> +</ul> |