bootstrap-contentlisted
Install: claude install-skill ronnieiscoo/bootstrap-expert
# Bootstrap 5.3 Content
Bootstrap provides typography, image, table, and other content styles built on top of Reboot, a normalized baseline.
## Reboot
Bootstrap Reboot normalizes default browser styles for consistent cross-browser rendering. It provides a foundation for the typography and content styles that follow.
### Code Elements
```html
<!-- Inline code -->
<p>Use <code><section></code> for page sections.</p>
<!-- Code blocks (use pre for preformatted text) -->
<pre><code><p>Sample text here...</p>
<p>And another line.</p></code></pre>
<!-- Variables -->
<var>y</var> = <var>m</var><var>x</var> + <var>b</var>
<!-- User input (keyboard) -->
<p>Press <kbd>Ctrl</kbd> + <kbd>C</kbd> to copy.</p>
<p>Or type <kbd>cd</kbd> to change directory.</p>
<!-- Nested kbd for key combinations -->
<kbd><kbd>Ctrl</kbd> + <kbd>Shift</kbd> + <kbd>P</kbd></kbd>
<!-- Sample output -->
<samp>This text is meant to be sample output from a program.</samp>
```
### Address
```html
<address>
<strong>Company Name</strong><br>
123 Main Street<br>
City, State 12345<br>
<abbr title="Phone">P:</abbr> (123) 456-7890
</address>
<address>
<strong>Full Name</strong><br>
<a href="mailto:email@example.com">email@example.com</a>
</address>
```
### Horizontal Rules
```html
<!-- Basic horizontal rule -->
<hr>
<!-- Styled with border utilities -->
<hr class="border border-danger border-2 opacity-50">
<hr class="border border-primary border-3 opacity-75">
<!