blob: 8adf0cb6512dbaa41da6ac9dbe5eb4be1c6a4b01 (
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
|
---
title: Valor Resolvido
slug: Web/CSS/resolved_value
tags:
- CSS
- Guía
- Iniciante
- Web
translation_of: Web/CSS/resolved_value
original_slug: Web/CSS/Valor_resolvido
---
<div>{{cssref}}</div>
<p>The <strong>resolved value</strong> of a CSS property is the value returned by {{domxref("Window.getComputedStyle", "getComputedStyle()")}}. For most properties, it is the {{cssxref("computed_value", "computed value") }}, but for a few legacy properties (including {{cssxref("width")}} and {{cssxref("height")}}), it is instead the {{cssxref("used_value", "used value")}}. See the specification link below for more per-property details.</p>
<h2 id="Especificações">Especificações</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">Especificações</th>
<th scope="col">Status</th>
<th scope="col">Comentário</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName("CSSOM", "#resolved-values", "resolved value")}}</td>
<td>{{Spec2("CSSOM")}}</td>
<td>Definicação inicial</td>
</tr>
</tbody>
</table>
<h2 id="Veja_também">Veja também</h2>
<ul>
<li><a href="/en-US/docs/Web/CSS/Reference">CSS Reference</a></li>
<li>{{CSS_key_concepts}}</li>
<li>{{domxref("window.getComputedStyle")}}</li>
</ul>
|