mirror of
https://github.com/twbs/bootstrap.git
synced 2025-08-30 16:50:00 +02:00
Add explicit scope="col" to <th> column headers
This commit is contained in:
committed by
XhmikosR
parent
4ccd522a76
commit
1871412978
@@ -29,11 +29,11 @@ Generally speaking, Bootstrap supports the latest versions of each major platfor
|
|||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th scope="col"></th>
|
||||||
<th>Chrome</th>
|
<th scope="col">Chrome</th>
|
||||||
<th>Firefox</th>
|
<th scope="col">Firefox</th>
|
||||||
<th>Safari</th>
|
<th scope="col">Safari</th>
|
||||||
<th>Android Browser & WebView</th>
|
<th scope="col">Android Browser & WebView</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@@ -61,12 +61,12 @@ Similarly, the latest versions of most desktop browsers are supported.
|
|||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th scope="col"></th>
|
||||||
<th>Chrome</th>
|
<th scope="col">Chrome</th>
|
||||||
<th>Firefox</th>
|
<th scope="col">Firefox</th>
|
||||||
<th>Microsoft Edge</th>
|
<th scope="col">Microsoft Edge</th>
|
||||||
<th>Opera</th>
|
<th scope="col">Opera</th>
|
||||||
<th>Safari</th>
|
<th scope="col">Safari</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
|
@@ -57,24 +57,24 @@ See how aspects of the Bootstrap grid system work across multiple devices with a
|
|||||||
<table class="table">
|
<table class="table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th scope="col"></th>
|
||||||
<th>
|
<th scope="col">
|
||||||
Extra small<br>
|
Extra small<br>
|
||||||
<span class="font-weight-normal"><576px</span>
|
<span class="font-weight-normal"><576px</span>
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th scope="col">
|
||||||
Small<br>
|
Small<br>
|
||||||
<span class="font-weight-normal">≥576px</span>
|
<span class="font-weight-normal">≥576px</span>
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th scope="col">
|
||||||
Medium<br>
|
Medium<br>
|
||||||
<span class="font-weight-normal">≥768px</span>
|
<span class="font-weight-normal">≥768px</span>
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th scope="col">
|
||||||
Large<br>
|
Large<br>
|
||||||
<span class="font-weight-normal">≥992px</span>
|
<span class="font-weight-normal">≥992px</span>
|
||||||
</th>
|
</th>
|
||||||
<th>
|
<th scope="col">
|
||||||
Extra large<br>
|
Extra large<br>
|
||||||
<span class="font-weight-normal">≥1200px</span>
|
<span class="font-weight-normal">≥1200px</span>
|
||||||
</th>
|
</th>
|
||||||
|
Reference in New Issue
Block a user