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/_colon_placeholder-shown/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/_colon_placeholder-shown/index.html')
-rw-r--r-- | files/ru/web/css/_colon_placeholder-shown/index.html | 194 |
1 files changed, 194 insertions, 0 deletions
diff --git a/files/ru/web/css/_colon_placeholder-shown/index.html b/files/ru/web/css/_colon_placeholder-shown/index.html new file mode 100644 index 0000000000..81ab4ab3fc --- /dev/null +++ b/files/ru/web/css/_colon_placeholder-shown/index.html @@ -0,0 +1,194 @@ +--- +title: ':placeholder-shown' +slug: 'Web/CSS/:placeholder-shown' +translation_of: 'Web/CSS/:placeholder-shown' +--- +<div>{{CSSRef}}{{SeeCompatTable}}</div> + +<div><a href="/ru/docs/Web/CSS">CSS псевдо-класс</a> <strong><code>:placeholder-shown</code></strong> представляет любой {{htmlElement("input")}} или {{htmlElement("textarea")}} элемент, который отображает в данный момент<a href="/en-US/docs/Web/HTML/Element/input#attr-placeholder"> текст заполнитель (плейсхолдер)</a>.</div> + +<pre class="brush: css no-line-numbers">/* Выбирает любой элемент с активным плейсхолдером */ +:placeholder-shown { + border: 2px solid silver; +}</pre> + +<h2 id="Синтаксис">Синтаксис</h2> + +<pre class="syntaxbox">{{csssyntax}}</pre> + +<h2 id="Примеры">Примеры</h2> + +<h3 id="Простой_пример">Простой пример</h3> + +<h4 id="HTML">HTML</h4> + +<pre class="brush: html"><input placeholder="Type something here!"></pre> + +<h4 id="CSS">CSS</h4> + +<div class="hidden"> +<pre class="brush: css">input:-ms-input-placeholder { + border-color: silver; +} + +input:-moz-placeholder { + border-color: silver; +}</pre> +</div> + +<pre class="brush: css; highlight[6]">input { + border: 2px solid black; + padding: 3px; +} + +input:placeholder-shown { + border-color: silver; +}</pre> + +<h4 id="Результат">Результат</h4> + +<p>{{EmbedLiveSample("Простой_пример", 200, 60)}}</p> + +<h3 id="Переполнение_текстом">Переполнение текстом</h3> + +<p>На узких экранах, таких как смартфоны, ширина полей поиска и других полей формы может быть значительно сокращена. Это может привести к нежелательному обрезанию текста плейсхолдера. Часто бывает полезно изменить это поведение с помощью свойства {{cssxref("text-overflow")}}.</p> + +<h4 id="HTML_2">HTML</h4> + +<pre class="brush: html"><input placeholder="Enter something into this field, if you please!"></pre> + +<h4 id="CSS_2">CSS</h4> + +<div class="hidden"> +<pre class="brush: css">input:-ms-input-placeholder { + text-overflow: ellipsis; +} + +input:-moz-placeholder { + text-overflow: ellipsis; +}</pre> +</div> + +<pre class="brush: css">input:placeholder-shown { + text-overflow: ellipsis; +}</pre> + +<h4 id="Результат_2">Результат</h4> + +<p>{{EmbedLiveSample("Переполнение_текстом", 200, 60)}}</p> + +<h3 id="Цветной_текст">Цветной текст</h3> + +<h4 id="HTML_3">HTML</h4> + +<pre class="brush: html"><input placeholder="Type something here!"> +</pre> + +<h4 id="CSS_3">CSS</h4> + +<div class="hidden"> +<pre class="brush: css">input:-ms-input-placeholder { + color: red; + font-style: italic; +} + +input:-moz-placeholder { + color: red; + font-style: italic; +}</pre> +</div> + +<pre class="brush: css">input:placeholder-shown { + color: red; + font-style: italic; +}</pre> + +<h4 id="Результат_3">Результат</h4> + +<p>{{EmbedLiveSample("Цветной_текст", 200, 60)}}</p> + +<h3 id="Кастомизированное_поле_ввода">Кастомизированное поле ввода</h3> + +<p>В следующем примере выделены поля Branch и ID с пользовательским стилем.</p> + +<h4 id="HTML_4">HTML</h4> + +<pre class="brush: html"><form id="test"> + <p> + <label for="name">Enter Student Name:</label> + <input id="name" placeholder="Student Name"/> + </p> + <p> + <label for="branch">Enter Student Branch:</label> + <input id="branch" placeholder="Student Branch"/> + </p> + <p> + <label for="sid">Enter Student ID:</label> + <input type="number" pattern="[0-9]{8}" title="8 digit ID" id="sid" class="studentid" placeholder="8 digit id"/> + </p> + <input type="submit"/> +</form></pre> + +<h4 id="CSS_4">CSS</h4> + +<div class="hidden"> +<pre class="brush: css">input.studentid:-ms-input-placeholder { + background-color: yellow; + color: red; + font-style: italic; +} + +input.studentid:-moz-placeholder { + background-color: yellow; + color: red; + font-style: italic; +}</pre> +</div> + +<pre class="brush: css; highlight[6]">input { + background-color: #E8E8E8; + color: black; +} + +input.studentid:placeholder-shown { + background-color: yellow; + color: red; + font-style: italic; +}</pre> + +<h4 id="Результат_4">Результат</h4> + +<p>{{EmbedLiveSample("Кастомизированное_поле_ввода", 200, 180)}}</p> + +<h2 id="Спецификации">Спецификации</h2> + +<table class="standard-table"> + <thead> + <tr> + <th scope="col">Спецификация</th> + <th scope="col">Статус</th> + <th scope="col">Комментарий</th> + </tr> + </thead> + <tbody> + <tr> + <td>{{SpecName("CSS4 Selectors", "#placeholder", ":placeholder-shown")}}</td> + <td>{{Spec2("CSS4 Selectors")}}</td> + <td>Initial definition.</td> + </tr> + </tbody> +</table> + +<h2 id="Совместимость_с_браузерами">Совместимость с браузерами</h2> + + + +<p>{{Compat("css.selectors.placeholder-shown")}}</p> + +<h2 id="Смотрите_также">Смотрите также</h2> + +<ul> + <li>Псевдоэлемент {{cssxref("::placeholder")}}, применяющий стили к <em>самому себе</em>.</li> + <li>Связянные HTML элементы: {{HTMLElement("input")}}, {{HTMLElement("textarea")}}</li> + <li><a href="/ru/docs/Learn/HTML/Forms">HTML формы</a></li> +</ul> |