aboutsummaryrefslogtreecommitdiff
path: root/files/es/web/css/_colon_read-only/index.html
blob: a97724cdf8c756d25bb54da7c67c4d502de70e38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
---
title: ':read-only'
slug: 'Web/CSS/:read-only'
tags:
  - CSS
  - Diseño
  - Pseudo-clase
  - Referencia
  - Web
translation_of: 'Web/CSS/:read-only'
---
<div>{{CSSRef}}</div>

<p>La <a href="/es/docs/CSS/Pseudo-classes">pseudo-clase</a> <strong><code>:read-only</code></strong> de <a href="/es/docs/Web/CSS">CSS</a> representa un elemento que ya no es editable por el usuario (como un <a href="/es/docs/Web/HTML/Element/input">input</a>).</p>

<pre class="brush: css no-line-numbers">/* Selecciona cualquier &lt;input&gt; que está en modo de solo lectura */
/* Soportado en Firefox usando prefijo */
input:-moz-read-only {
  background-color: #ccc;
}

/* El prefijo no es necesario en navegadores basados en Blink/WebKit/Edge  */
p:read-only {
  cursor: not-allowed;
}
input:read-only {
  background-color: #ccc;
}   </pre>

<div class="note">
<p><strong>Nota</strong>: El selector no solo selecciona {{htmlElement("input")}} marcados como  {{htmlattrxref("readonly", "input")}}; también selecccionará cualquier elemento que no pueda ser editar por el usuario.  Lea sobre el atributo <a href="/es/docs/Web/HTML/Global_attributes/contenteditable">contenteditable</a>.</p>
</div>

<h2 id="Sintaxis">Sintaxis</h2>

<pre class="syntaxbox">:read-only</pre>

<h2 id="Ejemplo" name="Ejemplo">Ejemplo</h2>

<h3 id="HTML">HTML</h3>

<pre class="brush: html">&lt;input type="text" value="Aquí puedes poner lo que quieras."&gt;
&lt;input type="text" value="Campo de solo lectura." readonly&gt;
&lt;p&gt;Este es un párrafo normal.&lt;/p&gt;
&lt;p contenteditable="true"&gt;Puedes editar este párrafo, ¡inténtalo!&lt;/p&gt;</pre>

<h3 id="CSS">CSS</h3>

<pre class="brush: css">input { min-width: 25em; }
input:-moz-read-only { background: cyan; }
input:read-only { background: cyan; }

p:-moz-read-only { background: lightgray; }
p:read-only { background: lightgray; }
p[contenteditable="true"] { color: blue; }
</pre>

<h3 id="Resultado">Resultado</h3>

<p>{{EmbedLiveSample("Ejemplo")}}</p>

<h2 class="editable" id="Specifications" name="Specifications">Especificaciones</h2>

<table class="standard-table">
 <thead>
  <tr>
   <th scope="col">Especificación</th>
   <th scope="col">Estado</th>
   <th scope="col">Comentarios</th>
  </tr>
 </thead>
 <tbody>
  <tr>
   <td>{{ SpecName('HTML WHATWG', '#selector-read-only', ':read-only') }}</td>
   <td>{{ Spec2('HTML WHATWG') }}</td>
   <td>Ningún cambio.</td>
  </tr>
  <tr>
   <td>{{ SpecName('HTML5 W3C', '#selector-read-only', ':read-only') }}</td>
   <td>{{ Spec2('HTML5 W3C') }}</td>
   <td>Define la semántica relacionada con HTML y de la validación de las restricciones.</td>
  </tr>
  <tr>
   <td>{{ SpecName('CSS4 Selectors', '#rw-pseudos', ':read-only') }}</td>
   <td>{{ Spec2('CSS4 Selectors') }}</td>
   <td>Define la pseudoclase, pero no la semántica asociada.</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">Compatibilidad con navegadores</h2>

<p>{{Compat("css.selectors.read-only")}}</p>

<h2 id="See_also" name="See_also">Ver también</h2>

<ul>
 <li>{{cssxref(":read-write")}}</li>
 <li>Atributo HTML {{htmlattrxref("contenteditable")}}</li>
</ul>