HTML - Cambios en una hoja de estilos no se actualizan

 
Vista:

Cambios en una hoja de estilos no se actualizan

Publicado por jorge eduardo (1 intervención) el 07/05/2020 02:31:18
buenas noches estoy enlazando una hoja de estilo con html pero no me salen los cambios e intentado muchas veses pero no me sale

gracias

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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang='es'>
	<head>
	    <title>Tienda Virtual a tu alcance</title>
		<meta charset='UTF-8'>
		<meta http-equiv='content-Language' content='es'/>
		<meta name='description' content='formulario de registro'>
		<meta name='keywords' content='ingrese aqui sus datos'>
		<meta name='author' content='jeduardo'>
		<meta name='viewport' content='width=device-width, initial-scale=1.0'>
		<link rel='stylesheet'type="text/css" href="formularios/estlos/estlos.css">
		<link rel='icon' type='image/png' href='imagenes/imogi.icon'>
	</head>
	<body>
		<div>
			<header>
				<h1 align='center'>
					Tienda Virtual a tu alcance
				</h1>
			</header>
			<nav>
				<table bgcolor='#aaaaaa' align='center' widht=80%>
					<tr>
 
						<td widht=10% align='center'>
 
							<a href='cliente.html' target='_blank'>
								Cliente
							</a>
						</td>
						<td widht=10% align='center'>
							<a href='productos.html' target='_blank'>
								Productos
							</a>
						</td>
						<td widht=10% align='center'>
							<a href='provedores.html' target='_blank'>
								Provedores
							</a>
						</td>
						<td widht=10% align='center'>
							<a href='promociones.html' target='_blank'>
								Promociones
							</a>
						</td>
						<td widht=10% align='center'>
							<a href='tecnologia.html' target='_blank'>
								Tecnologia
							</a>
						</td>
						<td widht=10% align='center'>
							<a href='contactenos.html' target='_blank'>
								Contactenos
							</a>
						</td>
						<td widht=10% align='center'>
							<a href='compras.html' target='_blank'>
								Compras
							</a>
						</td>
						<td widht=10% align='center'>
							<a href='listadedeseos.html' target='_blank'>
								Lista de deseos
							</a>
						</td>
					</tr>
				</table>
			</nav>
		</div>
		<div style='color: #440044; font-style: italic;  display: inline-block; width: 40%';>
			<br>
			<br>
			<img src='imagenes/logotienda.png'>
			<br>
			<p>
				Registrate
			</p>
		</div>
		<div style='color: #440044; font-style: italic;  display: inline-block; width: 55%';>
			<form>
				<table align='right' widht=80%>
					<tr>
						<td>
							Nombres
						</td>
						<td>
							<input type='text' name='nomb'>
						</td>
					</tr>
					<tr>
						<td>
							Apellidos
						</td>
						<td>
							<input type='text' name='apel'>
						</td>
					</tr>
					<tr>
						<td>
							Email
						</td>
						<td>
							<input type="email" name="correo" size="40">
						</td>
					</tr>
					<tr>
						<td>
							Movil
						</td>
						<td>
							<input type='text' name='celu'>
						</td>
					</tr>
					<tr>
						<td>
							Ciudad
						</td>
						<td>
							<input type='text' name='ciud'>
						</td>
					</tr>
					<tr>
						<td>
							Direccion
						</td>
						<td>
							<input type='text' name='dire'>
						</td>
					</tr>
					<tr>
						<td>
							Genero
						</td>
						<td>
							  <input type="radio" name="boton"> Hombre<br>
							<input type="radio" name="boton"> Mujer
						</td>
					</tr>
					<tr>
						<td>
							Fecha de nacimiento
						</td>
						<td>
							<input type='text' name='nacm'>
						</td>
					</tr>
					<tr>
						<td>
							<input type='reset' value='Limpiar'>
						</td>
						<td>
							<input type='submit' value='Registrate'>
						</td>
					</tr>
				</table>
			</form>
		</div>
		<div style='color: #444400; font-style: italic;  display: inline; width: 80%;  background-color:#000033;'>
			<footer>
				<h2 align='left'>
					jorge eduardo malagon ramos
				</h2>
			</footer>
		</div>
	</body>
</html>
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
Imágen de perfil de joel
Val: 1.453
Oro
Ha mantenido su posición en HTML (en relación al último mes)
Gráfica de HTML

Cambios en una hoja de estilos no se actualizan

Publicado por joel (460 intervenciones) el 07/05/2020 11:08:11
Entiendo que el problema es por la cache del navegador...
añade un valor al archivo de estilos...el numero de versión por ejemplo. algo así:
1
<link rel='stylesheet'type="text/css" href="formularios/estlos/estlos.css?1.0">

Esto hace que el navegador lo descargue nuevamente y no utilice la cache
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar