diff options
Diffstat (limited to 'files/es/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html')
-rw-r--r-- | files/es/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/files/es/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html b/files/es/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html new file mode 100644 index 0000000000..6213d4afa9 --- /dev/null +++ b/files/es/web/css/_doublecolon_-webkit-meter-suboptimum-value/index.html @@ -0,0 +1,96 @@ +--- +title: '::-webkit-meter-suboptimum-value' +slug: 'Web/CSS/::-webkit-meter-suboptimum-value' +tags: + - CSS + - No estándar(2) + - Pseudo-elemento + - Referencia +translation_of: 'Web/CSS/::-webkit-meter-suboptimum-value' +--- +<p>{{CSSRef}}{{Non-standard_header}}</p> + +<h2 id="Resumen"><strong>Resumen</strong></h2> + +<p>El pseudo-elemento CSS <code>::-webkit-meter-suboptimum-value</code> da color amarillo al elemento meter cuando su valor cae fuera del rango mix-max.</p> + +<h2 id="Especificaciones"><strong>Especificaciones</strong></h2> + +<p>No es parte de ninguna especificación. Es un pseudo-elemento propietario y específico de WebKit/Blink.</p> + +<h2 id="Ejemplos"><strong>Ejemplos</strong></h2> + +<pre class="brush: html"><meter min="0" max="10" value="6">Puntuación sobre 10</meter></pre> + +<pre class="brush: css">meter::-webkit-meter-suboptimum-value { + background: -webkit-gradient linear, left top, left bottom, + height: 100%; + box-sizing: border-box; +}</pre> + +<p>{{ EmbedLiveSample('Ejemplos', '100%', 50) }}</p> + +<div class="note"> +<p><strong>Notae</strong>: Sólo funciona en navegadores basados en Webkit/Blink</p> +</div> + +<h2 id="Compatibilidad_con_los_distintos_navegadores">Compatibilidad con los distintos navegadores</h2> + +<p>{{CompatibilityTable}}</p> + +<div id="compat-desktop"> +<table class="compat-table"> + <tbody> + <tr> + <th>Característica</th> + <th>Firefox (Gecko)</th> + <th>Chrome</th> + <th>Internet Explorer</th> + <th>Opera</th> + <th>Safari</th> + </tr> + <tr> + <td>Soporte básico</td> + <td>{{CompatNo}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatNo}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<div id="compat-mobile"> +<table class="compat-table"> + <tbody> + <tr> + <th>Característica</th> + <th>Firefox Mobile (Gecko)</th> + <th>Android</th> + <th>IE Phone</th> + <th>Opera Mobile</th> + <th>Safari Mobile</th> + </tr> + <tr> + <td>Soporte básico</td> + <td>{{CompatNo}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatNo}}</td> + <td>{{CompatVersionUnknown}}</td> + <td>{{CompatVersionUnknown}}</td> + </tr> + </tbody> +</table> +</div> + +<h2 id="Ver_además">Ver además</h2> + +<p>Los pseudo-elementos usados por WebKit/Blink para dar estilo a otras partes del elemento {{htmlelement("meter")}} :</p> + +<ul> + <li>{{cssxref("::-webkit-meter-inner-element")}}</li> + <li>{{cssxref("::-webkit-meter-bar")}}</li> + <li>{{cssxref("::-webkit-meter-even-less-good-value")}}</li> + <li>{{cssxref("::-webkit-meter-optimum-value")}}</li> +</ul> |