Skip to content

Commit

Permalink
updated svg summary table
Browse files Browse the repository at this point in the history
  • Loading branch information
jongund committed Nov 9, 2024
1 parent 3ea722a commit e6d953b
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions content/practices/high-contrast/high-contrast-practice.html
Original file line number Diff line number Diff line change
Expand Up @@ -727,24 +727,21 @@ <h3>Benefits of SVG Graphics</h3>
<caption>Summary of SVG vs. Bit-Mapped Features</caption>
<thead>
<tr>
<td></td>
<th>Color</th>
<th>Scaling</th>
<th>Performance</th>
<th>Feature</th>
<th>Bit-Mapped</th>
<th>SVG</th>
</tr>
</thead>
<tbody>
<tr>
<th>Bit-Mapped</th>
<td>Pixels colors do not change based on media queries</td>
<td>Low resolution images are distorted when magnified</td>
<td>Larger and slower</td>
<th>Resizing and Screen Size</th>
<td>Distorted or small</td>
<td>Smooth scaling</td>
</tr>
<tr>
<th>SVG</th>
<td>Adaptable to user media query preferences</td>
<td>Designed for smooth scaling</td>
<td>Smaller and faster</td>
<th>Adapt to High Contrast</th>
<td>Colors are fixed</td>
<td>Responsive to media queries</td>
</tr>
</tbody>
</table>
Expand Down

0 comments on commit e6d953b

Please sign in to comment.