Sticky table headers
In some situations, table headers need to be placed at a specific place on screen, and remain there, even when scrolling. Especially when tables are very long, it is useful to make the table header sticky on top so visual users always see it, even when scrolling vertically.
Using position: sticky
on table header elements is the most straight-forward approach to have fixed headers (both vertically and horizontally).
Adrian Roselli has a great, detailed post about the intricacies of this solution.
<div class="container" role="region" aria-labelledby="caption" tabindex="0">
<table>
<caption id="caption">
My Hobbies
</caption>
<thead>
<tr>
<th class="name" scope="col">Name</th>
<th class="description" scope="col">Description</th>
<th class="resources" scope="col">Additional Resources</th>
</tr>
</thead>
<tbody>
<tr>
<th class="name" scope="row">Hobby 1</th>
<td class="description">Description of hobby 1</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_1">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 2</th>
<td class="description">Description of hobby 2</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_2">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 3</th>
<td class="description">Description of hobby 3</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_3">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 4</th>
<td class="description">Description of hobby 4</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_4">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 5</th>
<td class="description">Description of hobby 5</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_5">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 6</th>
<td class="description">Description of hobby 6</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_6">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 7</th>
<td class="description">Description of hobby 7</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_7">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 8</th>
<td class="description">Description of hobby 8</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_8">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 9</th>
<td class="description">Description of hobby 9</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_9">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 10</th>
<td class="description">Description of hobby 10</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_10">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 11</th>
<td class="description">Description of hobby 11</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_11">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 12</th>
<td class="description">Description of hobby 12</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_12">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 13</th>
<td class="description">Description of hobby 13</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_13">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 14</th>
<td class="description">Description of hobby 14</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_14">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 15</th>
<td class="description">Description of hobby 15</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_15">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 16</th>
<td class="description">Description of hobby 16</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_16">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 17</th>
<td class="description">Description of hobby 17</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_17">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 18</th>
<td class="description">Description of hobby 18</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_18">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 19</th>
<td class="description">Description of hobby 19</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_19">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 20</th>
<td class="description">Description of hobby 20</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_20">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 21</th>
<td class="description">Description of hobby 21</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_21">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 22</th>
<td class="description">Description of hobby 22</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_22">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 23</th>
<td class="description">Description of hobby 23</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_23">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 24</th>
<td class="description">Description of hobby 24</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_24">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 25</th>
<td class="description">Description of hobby 25</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_25">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 26</th>
<td class="description">Description of hobby 26</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_26">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 27</th>
<td class="description">Description of hobby 27</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_27">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 28</th>
<td class="description">Description of hobby 28</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_28">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 29</th>
<td class="description">Description of hobby 29</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_29">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 30</th>
<td class="description">Description of hobby 30</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_30">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 31</th>
<td class="description">Description of hobby 31</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_31">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 32</th>
<td class="description">Description of hobby 32</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_32">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 33</th>
<td class="description">Description of hobby 33</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_33">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 34</th>
<td class="description">Description of hobby 34</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_34">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 35</th>
<td class="description">Description of hobby 35</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_35">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 36</th>
<td class="description">Description of hobby 36</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_36">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 37</th>
<td class="description">Description of hobby 37</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_37">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 38</th>
<td class="description">Description of hobby 38</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_38">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 39</th>
<td class="description">Description of hobby 39</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_39">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 40</th>
<td class="description">Description of hobby 40</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_40">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 41</th>
<td class="description">Description of hobby 41</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_41">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 42</th>
<td class="description">Description of hobby 42</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_42">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 43</th>
<td class="description">Description of hobby 43</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_43">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 44</th>
<td class="description">Description of hobby 44</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_44">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 45</th>
<td class="description">Description of hobby 45</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_45">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 46</th>
<td class="description">Description of hobby 46</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_46">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 47</th>
<td class="description">Description of hobby 47</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_47">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 48</th>
<td class="description">Description of hobby 48</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_48">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 49</th>
<td class="description">Description of hobby 49</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_49">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 50</th>
<td class="description">Description of hobby 50</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_50">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 51</th>
<td class="description">Description of hobby 51</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_51">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 52</th>
<td class="description">Description of hobby 52</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_52">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 53</th>
<td class="description">Description of hobby 53</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_53">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 54</th>
<td class="description">Description of hobby 54</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_54">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 55</th>
<td class="description">Description of hobby 55</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_55">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 56</th>
<td class="description">Description of hobby 56</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_56">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 57</th>
<td class="description">Description of hobby 57</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_57">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 58</th>
<td class="description">Description of hobby 58</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_58">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 59</th>
<td class="description">Description of hobby 59</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_59">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 60</th>
<td class="description">Description of hobby 60</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_60">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 61</th>
<td class="description">Description of hobby 61</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_61">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 62</th>
<td class="description">Description of hobby 62</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_62">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 63</th>
<td class="description">Description of hobby 63</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_63">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 64</th>
<td class="description">Description of hobby 64</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_64">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 65</th>
<td class="description">Description of hobby 65</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_65">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 66</th>
<td class="description">Description of hobby 66</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_66">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 67</th>
<td class="description">Description of hobby 67</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_67">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 68</th>
<td class="description">Description of hobby 68</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_68">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 69</th>
<td class="description">Description of hobby 69</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_69">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 70</th>
<td class="description">Description of hobby 70</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_70">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 71</th>
<td class="description">Description of hobby 71</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_71">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 72</th>
<td class="description">Description of hobby 72</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_72">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 73</th>
<td class="description">Description of hobby 73</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_73">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 74</th>
<td class="description">Description of hobby 74</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_74">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 75</th>
<td class="description">Description of hobby 75</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_75">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 76</th>
<td class="description">Description of hobby 76</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_76">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 77</th>
<td class="description">Description of hobby 77</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_77">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 78</th>
<td class="description">Description of hobby 78</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_78">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 79</th>
<td class="description">Description of hobby 79</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_79">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 80</th>
<td class="description">Description of hobby 80</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_80">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 81</th>
<td class="description">Description of hobby 81</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_81">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 82</th>
<td class="description">Description of hobby 82</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_82">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 83</th>
<td class="description">Description of hobby 83</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_83">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 84</th>
<td class="description">Description of hobby 84</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_84">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 85</th>
<td class="description">Description of hobby 85</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_85">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 86</th>
<td class="description">Description of hobby 86</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_86">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 87</th>
<td class="description">Description of hobby 87</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_87">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 88</th>
<td class="description">Description of hobby 88</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_88">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 89</th>
<td class="description">Description of hobby 89</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_89">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 90</th>
<td class="description">Description of hobby 90</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_90">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 91</th>
<td class="description">Description of hobby 91</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_91">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 92</th>
<td class="description">Description of hobby 92</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_92">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 93</th>
<td class="description">Description of hobby 93</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_93">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 94</th>
<td class="description">Description of hobby 94</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_94">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 95</th>
<td class="description">Description of hobby 95</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_95">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 96</th>
<td class="description">Description of hobby 96</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_96">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 97</th>
<td class="description">Description of hobby 97</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_97">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 98</th>
<td class="description">Description of hobby 98</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_98">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 99</th>
<td class="description">Description of hobby 99</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_99">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 100</th>
<td class="description">Description of hobby 100</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_100">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 101</th>
<td class="description">Description of hobby 101</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_101">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 102</th>
<td class="description">Description of hobby 102</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_102">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 103</th>
<td class="description">Description of hobby 103</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_103">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 104</th>
<td class="description">Description of hobby 104</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_104">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 105</th>
<td class="description">Description of hobby 105</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_105">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 106</th>
<td class="description">Description of hobby 106</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_106">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 107</th>
<td class="description">Description of hobby 107</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_107">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 108</th>
<td class="description">Description of hobby 108</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_108">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 109</th>
<td class="description">Description of hobby 109</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_109">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 110</th>
<td class="description">Description of hobby 110</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_110">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 111</th>
<td class="description">Description of hobby 111</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_111">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 112</th>
<td class="description">Description of hobby 112</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_112">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 113</th>
<td class="description">Description of hobby 113</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_113">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 114</th>
<td class="description">Description of hobby 114</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_114">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 115</th>
<td class="description">Description of hobby 115</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_115">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 116</th>
<td class="description">Description of hobby 116</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_116">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 117</th>
<td class="description">Description of hobby 117</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_117">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 118</th>
<td class="description">Description of hobby 118</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_118">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 119</th>
<td class="description">Description of hobby 119</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_119">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 120</th>
<td class="description">Description of hobby 120</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_120">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 121</th>
<td class="description">Description of hobby 121</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_121">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 122</th>
<td class="description">Description of hobby 122</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_122">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 123</th>
<td class="description">Description of hobby 123</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_123">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 124</th>
<td class="description">Description of hobby 124</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_124">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 125</th>
<td class="description">Description of hobby 125</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_125">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 126</th>
<td class="description">Description of hobby 126</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_126">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 127</th>
<td class="description">Description of hobby 127</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_127">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 128</th>
<td class="description">Description of hobby 128</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_128">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 129</th>
<td class="description">Description of hobby 129</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_129">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 130</th>
<td class="description">Description of hobby 130</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_130">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 131</th>
<td class="description">Description of hobby 131</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_131">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 132</th>
<td class="description">Description of hobby 132</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_132">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 133</th>
<td class="description">Description of hobby 133</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_133">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 134</th>
<td class="description">Description of hobby 134</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_134">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 135</th>
<td class="description">Description of hobby 135</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_135">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 136</th>
<td class="description">Description of hobby 136</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_136">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 137</th>
<td class="description">Description of hobby 137</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_137">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 138</th>
<td class="description">Description of hobby 138</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_138">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 139</th>
<td class="description">Description of hobby 139</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_139">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 140</th>
<td class="description">Description of hobby 140</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_140">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 141</th>
<td class="description">Description of hobby 141</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_141">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 142</th>
<td class="description">Description of hobby 142</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_142">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 143</th>
<td class="description">Description of hobby 143</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_143">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 144</th>
<td class="description">Description of hobby 144</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_144">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 145</th>
<td class="description">Description of hobby 145</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_145">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 146</th>
<td class="description">Description of hobby 146</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_146">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 147</th>
<td class="description">Description of hobby 147</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_147">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 148</th>
<td class="description">Description of hobby 148</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_148">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 149</th>
<td class="description">Description of hobby 149</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_149">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 150</th>
<td class="description">Description of hobby 150</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_150">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 151</th>
<td class="description">Description of hobby 151</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_151">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 152</th>
<td class="description">Description of hobby 152</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_152">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 153</th>
<td class="description">Description of hobby 153</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_153">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 154</th>
<td class="description">Description of hobby 154</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_154">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 155</th>
<td class="description">Description of hobby 155</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_155">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 156</th>
<td class="description">Description of hobby 156</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_156">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 157</th>
<td class="description">Description of hobby 157</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_157">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 158</th>
<td class="description">Description of hobby 158</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_158">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 159</th>
<td class="description">Description of hobby 159</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_159">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 160</th>
<td class="description">Description of hobby 160</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_160">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 161</th>
<td class="description">Description of hobby 161</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_161">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 162</th>
<td class="description">Description of hobby 162</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_162">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 163</th>
<td class="description">Description of hobby 163</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_163">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 164</th>
<td class="description">Description of hobby 164</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_164">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 165</th>
<td class="description">Description of hobby 165</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_165">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 166</th>
<td class="description">Description of hobby 166</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_166">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 167</th>
<td class="description">Description of hobby 167</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_167">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 168</th>
<td class="description">Description of hobby 168</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_168">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 169</th>
<td class="description">Description of hobby 169</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_169">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 170</th>
<td class="description">Description of hobby 170</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_170">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 171</th>
<td class="description">Description of hobby 171</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_171">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 172</th>
<td class="description">Description of hobby 172</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_172">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 173</th>
<td class="description">Description of hobby 173</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_173">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 174</th>
<td class="description">Description of hobby 174</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_174">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 175</th>
<td class="description">Description of hobby 175</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_175">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 176</th>
<td class="description">Description of hobby 176</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_176">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 177</th>
<td class="description">Description of hobby 177</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_177">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 178</th>
<td class="description">Description of hobby 178</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_178">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 179</th>
<td class="description">Description of hobby 179</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_179">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 180</th>
<td class="description">Description of hobby 180</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_180">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 181</th>
<td class="description">Description of hobby 181</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_181">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 182</th>
<td class="description">Description of hobby 182</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_182">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 183</th>
<td class="description">Description of hobby 183</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_183">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 184</th>
<td class="description">Description of hobby 184</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_184">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 185</th>
<td class="description">Description of hobby 185</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_185">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 186</th>
<td class="description">Description of hobby 186</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_186">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 187</th>
<td class="description">Description of hobby 187</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_187">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 188</th>
<td class="description">Description of hobby 188</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_188">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 189</th>
<td class="description">Description of hobby 189</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_189">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 190</th>
<td class="description">Description of hobby 190</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_190">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 191</th>
<td class="description">Description of hobby 191</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_191">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 192</th>
<td class="description">Description of hobby 192</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_192">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 193</th>
<td class="description">Description of hobby 193</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_193">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 194</th>
<td class="description">Description of hobby 194</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_194">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 195</th>
<td class="description">Description of hobby 195</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_195">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 196</th>
<td class="description">Description of hobby 196</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_196">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 197</th>
<td class="description">Description of hobby 197</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_197">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 198</th>
<td class="description">Description of hobby 198</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_198">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 199</th>
<td class="description">Description of hobby 199</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_199">Wikipedia</a>
</td>
</tr>
<tr>
<th class="name" scope="row">Hobby 200</th>
<td class="description">Description of hobby 200</td>
<td class="resources">
<a href="https://en.wikipedia.org/wiki/hobby_200">Wikipedia</a>
</td>
</tr>
</tbody>
</table>
</div>
body {
line-height: 1.5;
}
.container {
max-height: 75vh;
border: 0.25rem solid;
overflow: auto;
}
table {
border-collapse: collapse;
min-width: 100%;
}
caption {
padding: 0.125rem;
position: sticky;
top: 0;
z-index: 1;
background-color: #fff;
text-align: center;
}
tbody {
padding-top: 6px;
}
th,
td {
padding: 0.125rem 0.5rem;
text-align: left;
}
.name {
min-width: 10rem;
}
.description {
min-width: 20rem;
}
.resources {
min-width: 10rem;
}
/* Sticky behavior */
th[scope='row'],
thead th:first-child {
position: sticky;
left: 0;
background-color: lightgreen;
/* Non-scrolling border */
background-image: linear-gradient(
to right,
transparent calc(100% - 0.0625rem),
currentColor calc(100% - 0.0625rem)
);
}
th[scope='col'],
thead th:first-child {
position: sticky;
top: 0;
z-index: 1;
background-color: lightpink;
border-top: 0.0625rem solid;
/* Non-scrolling border */
background-image: linear-gradient(
to bottom,
transparent calc(100% - 1px),
currentColor calc(100% - 1px)
);
}
thead th:first-child {
z-index: 2;
background-image: linear-gradient(
to right,
transparent calc(100% - 1px),
currentColor calc(100% - 1px)
),
linear-gradient(
to bottom,
transparent calc(100% - 1px),
currentColor calc(100% - 1px)
);
}
Category | Result | Comments | Date |
---|---|---|---|
Keyboard only | ✔ (pass) pass | - | 2023-10-19 |
NVDA 2018.1 + FF 115 | ✔ (pass) pass | - | 2023-8-3 |
NVDA 2021.2 + Chrome | ✔ (pass) pass | - | 2021-2-10 |
NVDA 2023.1 + Edge | ✔ (pass) pass | - | 2023-7-13 |
JAWS 18.0.5038 + FF ESR 52.8.1 | ✔ (pass) pass | - | 2018-6-15 |
JAWS 2021.2 + Chrome | ✔ (pass) pass | - | 2021-2-10 |
JAWS 2023.23 + Edge | ✔ (pass) pass | - | 2023-7-13 |