Accessibility Examples
Test Start
This text is bold.
Test End
Rule References
| Rule | Pass IDs | Fail IDs |
|---|---|---|
| Rule 69 |
|
none |
Calculations
No calculations for test 63
Test Description
- This test contains text styled via the CSS font-weight statement.
Test Markup
- HTML4: b
User Agent Implementation
No user agent implementation information.
HTML Source Code
<div class="wrapper">
<p id="id1" class="bold">This text is bold.</p>
</div>
CSS Code
div.wrapper {
margin: 20px;
padding: 10px;
overflow: visible;
background-color: #faf7f0;
border: 1px solid #880000;
-webkit-border-radius: 10px; /* Safari and Chrome rounded corners */
-moz-border-radius: 10px; /* Firefox rounded corners */
border-radius: 10px; /* Opera rounded corners */
}
p.bold {
font-weight: bold;
}