Tables

This component can be used to apply basic styles to tabular data.

Rows or cells can be highlighted by applying the highlight class appropriately.

Tables should contain a thead and tbody at a minimum, and heading labels should make use of the scope attribute to denote where they apply.

Content within tables can also be centered by applying the center class to the entire table.

Tables

Preference Offer made
1 Yes
2 No
3 Yes
4 Yes
5 No
<table class="zebra">
  <thead>
    <tr>
      <th scope="col">
        Preference
      </th>
      <th scope="col">
        Offer made
      </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>
        1
      </td>
      <td>
        Yes
      </td>
    </tr>
    <tr class="highlight">
      <td>
        2
      </td>
      <td>
        No
      </td>
    </tr>
    <tr>
      <td>
        3
      </td>
      <td>
        Yes
      </td>
    </tr>
    <tr>
      <td>
        4
      </td>
      <td>
        Yes
      </td>
    </tr>
    <tr>
      <td>
        5
      </td>
      <td class="highlight">
        No
      </td>
    </tr>
  </tbody>
</table>
      

Sortable table

Preference Text Offer made Unit Code Retail Price
1 50 Yes ARTS_11 $29.99
2 300 No ARTS_3 $9.99
4 7 Yes ARTS_100 $39.99
3 6 Yes ARTS_2 $109.99
<table class="zebra" data-sortable="">
  <thead>
    <tr>
      <th scope="col">
        Preference
      </th>
      <th data-sort-as="text" scope="col">
        Text
      </th>
      <th data-sort-skip="" scope="col">
        Offer made
      </th>
      <th data-sort-initial="" scope="col">
        Unit Code
      </th>
      <th class="right" scope="col">
        Retail Price
      </th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>
        1
      </td>
      <td>
        50
      </td>
      <td>
        Yes
      </td>
      <td>
        ARTS_11
      </td>
      <td class="right">
        $29.99
      </td>
    </tr>
    <tr>
      <td>
        2
      </td>
      <td>
        300
      </td>
      <td>
        No
      </td>
      <td>
        ARTS_3
      </td>
      <td class="right">
        $9.99
      </td>
    </tr>
    <tr>
      <td>
        4
      </td>
      <td>
        7
      </td>
      <td>
        Yes
      </td>
      <td>
        ARTS_100
      </td>
      <td class="right">
        $39.99
      </td>
    </tr>
    <tr>
      <td>
        3
      </td>
      <td>
        6
      </td>
      <td>
        Yes
      </td>
      <td>
        ARTS_2
      </td>
      <td class="right">
        $109.99
      </td>
    </tr>
  </tbody>
</table>
      

Add the attribute data-sortable to the table, as in the example above and this will allow you to sort the table data by column. Please note, this will only work on a simple table with one tbody and 1:1 headings to columns.

Columns are ordered by a natural sort algorithm, so currency and patterned data (eg. unit codes) will sort as expected. This can be overridden by adding an attribute data-sort-as="text" to the column heading th, to use the older alphabetic sort instead (illustrated with the "Text" column above).

The table will now display unsorted until a column is chosen. If you want the table to run a sort at page load, you can add data-sort-initial to a column heading th.

There may be a circumstance where you don't want the make a column sortable, you can prevent it from acquiring sortable links by adding the attribute data-sort-skip to the column heading th ("Offer made" in the example above).

Complex sample table 1

Day/Date Activity
January
Monday 6 January to Sunday 2 March Summer Term (8 weeks)
Wednesday 22 January Academic Advice Day 1
Monday 27 January University holiday for Australia Day
Friday 31 January Council Planning Day
February
Wednesday 12 February to Friday 14 February Conference of Deans and Heads of Departments
Thursday 20 February Academic Advice Day 2
Tuesday 25 February to Friday 28 February Week O: Orientation for all students
March
Monday 3 March to Sunday 1 June Semester 1 (12 teaching weeks)
Monday 10 March Labour Day (not a University Holiday)
April
Good Friday 18 April to Sunday 27 April Easter Non Teaching Period & UA (previously AVCC) Common Week
Friday 25 April Anzac Day – University Holiday
<table>
  <thead>
    <tr>
      <th id="wcag-date" scope="col">
        Day/Date
      </th>
      <th id="wcag-activity" scope="col">
        Activity
      </th>
    </tr>
  </thead>
  <tbody>
    <tr class="header">
      <th colspan="2" id="wcag-jan">
        January
      </th>
    </tr>
    <tr>
      <td headers="wcag-jan wcag-date">
        Monday 6 January to Sunday 2 March
      </td>
      <td headers="wcag-jan wcag-activity">
        Summer Term (8 weeks)
      </td>
    </tr>
    <tr>
      <td headers="wcag-jan wcag-date">
        Wednesday 22 January
      </td>
      <td headers="wcag-jan wcag-activity">
        Academic Advice Day 1
      </td>
    </tr>
    <tr>
      <td headers="wcag-jan wcag-date">
        Monday 27 January
      </td>
      <td headers="wcag-jan wcag-activity">
        University holiday for Australia Day
      </td>
    </tr>
    <tr>
      <td headers="wcag-jan wcag-date">
        Friday 31 January
      </td>
      <td headers="wcag-jan wcag-activity">
        Council Planning Day
      </td>
    </tr>
    <tr class="header">
      <th colspan="2" id="wcag-feb">
        February
      </th>
    </tr>
    <tr>
      <td headers="wcag-feb wcag-date">
        Wednesday 12 February to Friday 14 February
      </td>
      <td headers="wcag-feb wcag-activity">
        Conference of Deans and Heads of Departments
      </td>
    </tr>
    <tr>
      <td headers="wcag-feb wcag-date">
        Thursday 20 February
      </td>
      <td headers="wcag-feb wcag-activity">
        Academic Advice Day 2
      </td>
    </tr>
    <tr>
      <td headers="wcag-feb wcag-date">
        Tuesday 25 February to Friday 28 February
      </td>
      <td headers="wcag-feb wcag-activity">
        Week O: Orientation for all students
      </td>
    </tr>
    <tr class="header">
      <th colspan="2" id="wcag-mar">
        March
      </th>
    </tr>
    <tr>
      <td headers="wcag-mar wcag-date">
        Monday 3 March to Sunday 1 June
      </td>
      <td headers="wcag-mar wcag-activity">
        Semester 1 (12 teaching weeks)
      </td>
    </tr>
    <tr>
      <td headers="wcag-mar wcag-date">
        Monday 10 March
      </td>
      <td headers="wcag-mar wcag-activity">
        Labour Day (not a  University Holiday)
      </td>
    </tr>
    <tr class="header">
      <th colspan="2" id="wcag-apr">
        April
      </th>
    </tr>
    <tr>
      <td headers="wcag-apr wcag-date">
        Good Friday 18 April to Sunday 27 April
      </td>
      <td headers="wcag-apr wcag-activity">
        Easter Non Teaching Period & UA (previously AVCC) Common Week
      </td>
    </tr>
    <tr>
      <td headers="wcag-apr wcag-date">
        Friday 25 April
      </td>
      <td headers="wcag-apr wcag-activity">
        Anzac Day – University Holiday
      </td>
    </tr>
  </tbody>
</table>
      

Complex sample table 2

Course name Duration (EFTSL) CRICOS code 2015 International course fee ($AUD/EFTSL) 2015 Estimated fee year 1 ($AUD) Indicative total course fee ($AUD) Notes for commencing international students
Graduate/Postgraduate Certificates
Graduate Certificate in Arts 0.5 031944F $27,360 $13,680 $13,680
Postgraduate Certificate in Arts 0.5 031945E $29,344 $14,672 $14,672
Postgraduate Certificate in Professional Ethics 0.5 044107C $29,344 $14,672 $14,672
Graduate/Postgraduate Diplomas
Graduate Diploma in Arts 1 023190K $27,360 $27,360 $27,360
Postgraduate Diploma in Arts 1 023185G $29,344 $29,344 $29,344
Postgraduate Diploma in Arts (Cultural Material Conservation) 1 023185G $29,344 $29,344 $29,344
Postgraduate Diploma in Arts (Editing and Communications) 1 023185G $29,344 $29,344 $29,344
Postgraduate Diploma in Arts (Media and Communication) 1 045363A $29,344 $29,344 $29,344
Postgraduate Diploma in Arts and Cultural Management 1 075125M $30,880 td $30,880 $30,880
Postgraduate Diploma in Islamic Studies 1 064483B $29,344 $29,344 $29,344
Postgraduate Diploma in Professional Ethics 1 044108B $29,344 $29,344 $29,344
Masters by coursework
Executive Master of Arts (200 points) 2 068099M $29,632 $29,632 $60,768 Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
Master of Applied Linguistics 2 077928D tbc Fees for 2015 to be confirmed.
Master of Art Curatorship 2 027565G $29,344 $29,344 $60,160 Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
Master of Arts and Cultural Management 2 073305A $30,880 $30,880 $63,328 Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
Master of Arts in Professional and Applied Ethics 2 058722J $29,344 $29,344 $60,160
Master of Creative Writing, Publishing and Editing 2 058718E $29,344 $29,344 $60,160 Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
Master of Criminology 2 055074E tbc Fees for 2015 to be confirmed.
Master of Cultural Material Conservation 2 061638A $29,344 $29,344 $60,160 Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
Master of Global Media Communication 2 045345C $29,344 $29,344 $60,160 Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
Master of Journalism 2 075464C $29,632 $29,632 $60,768
Master of Marketing Communication 1.5 TBC $30,016 $30,016 $45,775
2 TBC $30,016 $30,016 $61,534
Master of Publishing and Communications 2 061634E $29,344 $29,344 $60,160 Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
Master of Social Policy 2 049598E tbc Fees for 2015 to be confirmed.
Master of Translation 1.5 TBC $29,344 $29,344 $44,750
2 TBC $29,344 $29,344 $60,155
Graduate research courses
Doctor of Philosophy (Arts) 4 056954J $29,344 $29,344 $126,560 Maximum course wcag-duration shown. Total indicative fee based on maximum wcag-duration. May be completed in 3-4 EFTSL.
Master of Arts (Advanced Seminars and Shorter Thesis) 2 014779M $29,344 $29,344 $60,160 Maximum course wcag-duration shown. Total indicative fee based on maximum wcag-duration. May be completed in 1.5-2 EFTSL.
Master of Arts (all current streams) 2 007306C $29,344 $29,344 $60,160 Maximum course wcag-duration shown. Total indicative fee based on maximum wcag-duration. May be completed in 1.5-2 EFTSL.
<div class="mobile-wrap">
  <table class="wide">
    <thead>
      <tr>
        <th id="wcag-name">
          Course name
        </th>
        <th id="wcag-duration">
          Duration (EFTSL)
        </th>
        <th id="wcag-cricos">
          CRICOS code
        </th>
        <th id="wcag-fee-int">
          2015 International course fee ($AUD/EFTSL)
        </th>
        <th id="wcag-fee-aus">
          2015 Estimated fee year 1 ($AUD)
        </th>
        <th id="wcag-fee-total">
          Indicative total course fee ($AUD)
        </th>
        <th id="wcag-notes">
          Notes for commencing international students
        </th>
      </tr>
    </thead>
    <tbody>
      <tr class="header">
        <th colspan="7">
          Graduate/Postgraduate Certificates
        </th>
      </tr>
      <tr>
        <th id="wcag-c1">
          Graduate Certificate in Arts
        </th>
        <td headers="wcag-c1 wcag-duration">
          0.5
        </td>
        <td headers="wcag-c1 wcag-cricos">
          031944F
        </td>
        <td headers="wcag-c1 wcag-fee-int">
          $27,360
        </td>
        <td headers="wcag-c1 wcag-fee-aus">
          $13,680
        </td>
        <td headers="wcag-c1 wcag-fee-total">
          $13,680
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-c2">
          Postgraduate Certificate in Arts
        </th>
        <td headers="wcag-c2 wcag-duration">
          0.5
        </td>
        <td headers="wcag-c2 wcag-cricos">
          031945E
        </td>
        <td headers="wcag-c2 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-c2 wcag-fee-aus">
          $14,672
        </td>
        <td headers="wcag-c2 wcag-fee-total">
          $14,672
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-c3">
          Postgraduate Certificate in Professional Ethics
        </th>
        <td headers="wcag-c3 wcag-duration">
          0.5
        </td>
        <td headers="wcag-c3 wcag-cricos">
          044107C
        </td>
        <td headers="wcag-c3 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-c3 wcag-fee-aus">
          $14,672
        </td>
        <td headers="wcag-c3 wcag-fee-total">
          $14,672
        </td>
        <td></td>
      </tr>
      <tr class="header">
        <th colspan="7">
          Graduate/Postgraduate Diplomas
        </th>
      </tr>
      <tr>
        <th id="wcag-d1">
          Graduate Diploma in Arts
        </th>
        <td headers="wcag-d1 wcag-duration">
          1
        </td>
        <td headers="wcag-d1 wcag-cricos">
          023190K
        </td>
        <td headers="wcag-d1 wcag-fee-int">
          $27,360
        </td>
        <td headers="wcag-d1 wcag-fee-aus">
          $27,360
        </td>
        <td headers="wcag-d1 wcag-fee-total">
          $27,360
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-d2">
          Postgraduate Diploma in Arts
        </th>
        <td headers="wcag-d2 wcag-duration">
          1
        </td>
        <td headers="wcag-d2 wcag-cricos">
          023185G
        </td>
        <td headers="wcag-d2 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-d2 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-d2 wcag-fee-total">
          $29,344
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-d3">
          Postgraduate Diploma in Arts (Cultural Material Conservation)
        </th>
        <td headers="wcag-d3 wcag-duration">
          1
        </td>
        <td headers="wcag-d3 wcag-cricos">
          023185G
        </td>
        <td headers="wcag-d3 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-d3 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-d3 wcag-fee-total">
          $29,344
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-d4">
          Postgraduate Diploma in Arts (Editing and Communications)
        </th>
        <td headers="wcag-d4 wcag-duration">
          1
        </td>
        <td headers="wcag-d4 wcag-cricos">
          023185G
        </td>
        <td headers="wcag-d4 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-d4 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-d4 wcag-fee-total">
          $29,344
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-d5">
          Postgraduate Diploma in Arts (Media and Communication)
        </th>
        <td headers="wcag-d5 wcag-duration">
          1
        </td>
        <td headers="wcag-d5 wcag-cricos">
          045363A
        </td>
        <td headers="wcag-d5 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-d5 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-d5 wcag-fee-total">
          $29,344
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-d6">
          Postgraduate Diploma in Arts and Cultural Management
        </th>
        <td headers="wcag-d6 wcag-duration">
          1
        </td>
        <td headers="wcag-d6 wcag-cricos">
          075125M
        </td>
        <td headers="wcag-d6 wcag-fee-int">
          $30,880
        </td>
        <td headers="wcag-d6 wcag-fee-aus">
          td $30,880
        </td>
        <td headers="wcag-d6 wcag-fee-total">
          $30,880
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-d7">
          Postgraduate Diploma in Islamic Studies
        </th>
        <td headers="wcag-d7 wcag-duration">
          1
        </td>
        <td headers="wcag-d7 wcag-cricos">
          064483B
        </td>
        <td headers="wcag-d7 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-d7 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-d7 wcag-fee-total">
          $29,344
        </td>
        <td></td>
      </tr>
      <tr>
        <th id="wcag-d8">
          Postgraduate Diploma in Professional Ethics
        </th>
        <td headers="wcag-d8 wcag-duration">
          1
        </td>
        <td headers="wcag-d8 wcag-cricos">
          044108B
        </td>
        <td headers="wcag-d8 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-d8 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-d8 wcag-fee-total">
          $29,344
        </td>
        <td></td>
      </tr>
      <tr class="header">
        <th colspan="7">
          Masters by coursework
        </th>
      </tr>
      <tr>
        <th id="wcag-m1">
          Executive Master of Arts (200 points)
        </th>
        <td headers="wcag-m1 wcag-duration">
          2
        </td>
        <td headers="wcag-m1 wcag-cricos">
          068099M
        </td>
        <td headers="wcag-m1 wcag-fee-int">
          $29,632
        </td>
        <td headers="wcag-m1 wcag-fee-aus">
          $29,632
        </td>
        <td headers="wcag-m1 wcag-fee-total">
          $60,768
        </td>
        <td headers="wcag-m1 wcag-notes">
          Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
        </td>
      </tr>
      <tr>
        <th id="wcag-m2">
          Master of Applied Linguistics
        </th>
        <td headers="wcag-m2 wcag-duration">
          2
        </td>
        <td headers="wcag-m2 wcag-cricos">
          077928D
        </td>
        <td headers="wcag-m2 wcag-fee-int">
          tbc
        </td>
        <td headers="wcag-m2 wcag-fee-aus">
          –
        </td>
        <td headers="wcag-m2 wcag-fee-total">
          –
        </td>
        <td headers="wcag-m2 wcag-notes">
          Fees for 2015 to be confirmed.
        </td>
      </tr>
      <tr>
        <th id="wcag-m3">
          Master of Art Curatorship
        </th>
        <td headers="wcag-m3 wcag-duration">
          2
        </td>
        <td headers="wcag-m3 wcag-cricos">
          027565G
        </td>
        <td headers="wcag-m3 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m3 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m3 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-m3 wcag-notes">
          Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
        </td>
      </tr>
      <tr>
        <th id="wcag-m4">
          Master of Arts and Cultural Management
        </th>
        <td headers="wcag-m4 wcag-duration">
          2
        </td>
        <td headers="wcag-m4 wcag-cricos">
          073305A
        </td>
        <td headers="wcag-m4 wcag-fee-int">
          $30,880
        </td>
        <td headers="wcag-m4 wcag-fee-aus">
          $30,880
        </td>
        <td headers="wcag-m4 wcag-fee-total">
          $63,328
        </td>
        <td headers="wcag-m4 wcag-notes">
          Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
        </td>
      </tr>
      <tr>
        <th id="wcag-m5">
          Master of Arts in Professional and Applied Ethics
        </th>
        <td headers="wcag-m5 wcag-duration">
          2
        </td>
        <td headers="wcag-m5 wcag-cricos">
          058722J
        </td>
        <td headers="wcag-m5 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m5 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m5 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-m5 wcag-notes"></td>
      </tr>
      <tr>
        <th id="wcag-m6">
          Master of Creative Writing, Publishing and Editing
        </th>
        <td headers="wcag-m6 wcag-duration">
          2
        </td>
        <td headers="wcag-m6 wcag-cricos">
          058718E
        </td>
        <td headers="wcag-m6 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m6 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m6 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-m6 wcag-notes">
          Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
        </td>
      </tr>
      <tr>
        <th id="wcag-m7">
          Master of Criminology
        </th>
        <td headers="wcag-m7 wcag-duration">
          2
        </td>
        <td headers="wcag-m7 wcag-cricos">
          055074E
        </td>
        <td headers="wcag-m7 wcag-fee-int">
          tbc
        </td>
        <td headers="wcag-m7 wcag-fee-aus">
          –
        </td>
        <td headers="wcag-m7 wcag-fee-total">
          –
        </td>
        <td headers="wcag-m7 wcag-notes">
          Fees for 2015 to be confirmed.
        </td>
      </tr>
      <tr>
        <th id="wcag-m8">
          Master of Cultural Material Conservation
        </th>
        <td headers="wcag-m8 wcag-duration">
          2
        </td>
        <td headers="wcag-m8 wcag-cricos">
          061638A
        </td>
        <td headers="wcag-m8 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m8 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m8 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-m8 wcag-notes">
          Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
        </td>
      </tr>
      <tr>
        <th id="wcag-m9">
          Master of Global Media Communication
        </th>
        <td headers="wcag-m9 wcag-duration">
          2
        </td>
        <td headers="wcag-m9 wcag-cricos">
          045345C
        </td>
        <td headers="wcag-m9 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m9 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m9 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-m9 wcag-notes">
          Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
        </td>
      </tr>
      <tr>
        <th id="wcag-m10">
          Master of Journalism
        </th>
        <td headers="wcag-m10 wcag-duration">
          2
        </td>
        <td headers="wcag-m10 wcag-cricos">
          075464C
        </td>
        <td headers="wcag-m10 wcag-fee-int">
          $29,632
        </td>
        <td headers="wcag-m10 wcag-fee-aus">
          $29,632
        </td>
        <td headers="wcag-m10 wcag-fee-total">
          $60,768
        </td>
        <td headers="wcag-m10 wcag-notes"></td>
      </tr>
      <tr>
        <th id="wcag-m11" rowspan="2">
          Master of Marketing Communication
        </th>
        <td headers="wcag-m11 wcag-duration">
          1.5
        </td>
        <td headers="wcag-m11 wcag-cricos">
          TBC
        </td>
        <td headers="wcag-m11 wcag-fee-int">
          $30,016
        </td>
        <td headers="wcag-m11 wcag-fee-aus">
          $30,016
        </td>
        <td headers="wcag-m11 wcag-fee-total">
          $45,775
        </td>
        <td headers="wcag-m11 wcag-notes"></td>
      </tr>
      <tr>
        <td headers="wcag-m11 wcag-duration">
          2
        </td>
        <td headers="wcag-m11 wcag-cricos">
          TBC
        </td>
        <td headers="wcag-m11 wcag-fee-int">
          $30,016
        </td>
        <td headers="wcag-m11 wcag-fee-aus">
          $30,016
        </td>
        <td headers="wcag-m11 wcag-fee-total">
          $61,534
        </td>
        <td headers="wcag-m11 wcag-notes"></td>
      </tr>
      <tr>
        <th id="wcag-m12">
          Master of Publishing and Communications
        </th>
        <td headers="wcag-m12 wcag-duration">
          2
        </td>
        <td headers="wcag-m12 wcag-cricos">
          061634E
        </td>
        <td headers="wcag-m12 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m12 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m12 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-m12 wcag-notes">
          Wcag-duration indicated is maximum course wcag-duration. May be completed in less EFTSL depending upon academic background and/or relevant work experience.
        </td>
      </tr>
      <tr>
        <th id="wcag-m13">
          Master of Social Policy
        </th>
        <td headers="wcag-m13 wcag-duration">
          2
        </td>
        <td headers="wcag-m13 wcag-cricos">
          049598E
        </td>
        <td headers="wcag-m13 wcag-fee-int">
          tbc
        </td>
        <td headers="wcag-m13 wcag-fee-aus">
          –
        </td>
        <td headers="wcag-m13 wcag-fee-total">
          –
        </td>
        <td headers="wcag-m13 wcag-notes">
          Fees for 2015 to be confirmed.
        </td>
      </tr>
      <tr>
        <th id="wcag-m14" rowspan="2">
          Master of Translation
        </th>
        <td headers="wcag-m14 wcag-duration">
          1.5
        </td>
        <td headers="wcag-m14 wcag-cricos">
          TBC
        </td>
        <td headers="wcag-m14 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m14 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m14 wcag-fee-total">
          $44,750
        </td>
        <td headers="wcag-m14 wcag-notes"></td>
      </tr>
      <tr>
        <td headers="wcag-m14 wcag-duration">
          2
        </td>
        <td headers="wcag-m14 wcag-cricos">
          TBC
        </td>
        <td headers="wcag-m14 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-m14 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-m14 wcag-fee-total">
          $60,155
        </td>
        <td headers="wcag-m14 wcag-notes"></td>
      </tr>
      <tr class="header">
        <th colspan="7">
          Graduate research courses
        </th>
      </tr>
      <tr>
        <th id="wcag-r1">
          Doctor of Philosophy (Arts)
        </th>
        <td headers="wcag-r1 wcag-duration">
          4
        </td>
        <td headers="wcag-r1 wcag-cricos">
          056954J
        </td>
        <td headers="wcag-r1 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-r1 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-r1 wcag-fee-total">
          $126,560
        </td>
        <td headers="wcag-r1 wcag-notes">
          Maximum course wcag-duration shown. Total indicative fee based on maximum wcag-duration. May be completed in 3-4 EFTSL.
        </td>
      </tr>
      <tr>
        <th id="wcag-r2">
          Master of Arts (Advanced Seminars and Shorter Thesis)
        </th>
        <td headers="wcag-r2 wcag-duration">
          2
        </td>
        <td headers="wcag-r2 wcag-cricos">
          014779M
        </td>
        <td headers="wcag-r2 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-r2 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-r2 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-r2 wcag-notes">
          Maximum course wcag-duration shown. Total indicative fee based on maximum wcag-duration. May be completed in 1.5-2 EFTSL.
        </td>
      </tr>
      <tr>
        <th id="wcag-r3">
          Master of Arts (all current streams)
        </th>
        <td headers="wcag-r3 wcag-duration">
          2
        </td>
        <td headers="wcag-r3 wcag-cricos">
          007306C
        </td>
        <td headers="wcag-r3 wcag-fee-int">
          $29,344
        </td>
        <td headers="wcag-r3 wcag-fee-aus">
          $29,344
        </td>
        <td headers="wcag-r3 wcag-fee-total">
          $60,160
        </td>
        <td headers="wcag-r3 wcag-notes">
          Maximum course wcag-duration shown. Total indicative fee based on maximum wcag-duration. May be completed in 1.5-2 EFTSL.
        </td>
      </tr>
    </tbody>
  </table>
</div>
      

Complex sample table 3

Type of Accommodation No. of Weeks Weekly Rent / Board Range ($) Estimated Total ($) Rent or Board and other expenses
Sharing Rented Premises (with 2 others) Close to Parkville campus 52 190 - 230 22,000 - 28,800
Within 6 kilometres of Uni 252 155 -185 20,000 - 26,300
Rural area 52 80 - 100 15,600 - 20,700
Student Apartments Two bedroom, shared 52 215 - 260 23,400 - 30,500
One bedroom not shared 52 305 - 370 28,500 - 36,700
Hostel One bedroom - shared bathroom/kitchen 52 185 - 225 22,100 - 28,200
Residential Colleges (near or on campus) 35 week stay 35 552 - 712* 27,600 - 36,600
44 week stay 44 552 - 712* 34,072 - 45,017
Homestay Living with a local family 40 240 - 290* 16,000 - 20,700
<div class="mobile-wrap">
  <table>
    <thead>
      <tr>
        <th colspan="2" id="wcag-typeofaccomodation">
          Type of Accommodation
        </th>
        <th id="wcag-numberofweek">
          No. of Weeks
        </th>
        <th id="wcag-weeklyrent">
          <strong>Weekly Rent / Board Range ($)</strong>
        </th>
        <th id="wcag-estimatedtotal">
          Estimated Total ($) Rent or Board and other expenses
        </th>
      </tr>
    </thead>
    <tbody>
      <tr>
        <th id="wcag-share" rowspan="3">
          Sharing Rented Premises (with 2 others)
        </th>
        <th id="wcag-a1">
          Close to Parkville campus
        </th>
        <td headers="wcag-share wcag-a1 wcag-numberofweek">
          52
        </td>
        <td headers="wcag-share wcag-a1 wcag-weeklyrent">
          190 - 230
        </td>
        <td headers="wcag-share wcag-a1 wcag-estimatedtotal">
          22,000 - 28,800
        </td>
      </tr>
      <tr>
        <th id="wcag-a2">
          Within 6 kilometres of Uni
        </th>
        <td headers="wcag-share wcag-a2 wcag-numberofweek">
          252
        </td>
        <td headers="wcag-share wcag-a2 wcag-weeklyrent">
          155 -185
        </td>
        <td headers="wcag-share wcag-a2 wcag-estimatedtotal">
          20,000 - 26,300
        </td>
      </tr>
      <tr>
        <th id="wcag-a3">
          Rural area
        </th>
        <td headers="wcag-share wcag-a3 wcag-numberofweek">
          52
        </td>
        <td headers="wcag-share wcag-a3 wcag-weeklyrent">
          80 - 100
        </td>
        <td headers="wcag-share wcag-a3 wcag-estimatedtotal">
          15,600 - 20,700
        </td>
      </tr>
      <tr>
        <th id="wcag-apartment" rowspan="2">
          Student Apartments
        </th>
        <th id="wcag-a4">
          Two bedroom, shared
        </th>
        <td headers="wcag-apartment wcag-a4 wcag-numberofweek">
          52
        </td>
        <td headers="wcag-apartment wcag-a4 wcag-weeklyrent">
          215 - 260
        </td>
        <td headers="wcag-apartment wcag-a4 wcag-estimatedtotal">
          23,400 - 30,500
        </td>
      </tr>
      <tr>
        <th id="wcag-a5">
          One bedroom not shared
        </th>
        <td headers="wcag-apartment wcag-a5 wcag-numberofweek">
          52
        </td>
        <td headers="wcag-apartment wcag-a5 wcag-weeklyrent">
          305 - 370
        </td>
        <td headers="wcag-apartment wcag-a5 wcag-estimatedtotal">
          28,500 - 36,700
        </td>
      </tr>
      <tr>
        <th id="wcag-hostel">
          Hostel
        </th>
        <th id="wcag-a6">
          One bedroom - shared bathroom/kitchen
        </th>
        <td headers="wcag-hostel wcag-a6 wcag-numberofweek">
          52
        </td>
        <td headers="wcag-hostel wcag-a6 wcag-weeklyrent">
          185 - 225
        </td>
        <td headers="wcag-hostel wcag-a6 wcag-estimatedtotal">
          22,100 - 28,200
        </td>
      </tr>
      <tr>
        <th id="wcag-college" rowspan="2">
          Residential Colleges (near or on campus)
        </th>
        <th id="wcag-a7">
          35 week stay
        </th>
        <td headers="wcag-college wcag-a7 wcag-numberofweek">
          35
        </td>
        <td headers="wcag-college wcag-a7 wcag-weeklyrent">
          552 - 712*
        </td>
        <td headers="wcag-college wcag-a7 wcag-estimatedtotal">
          27,600 - 36,600
        </td>
      </tr>
      <tr>
        <th id="wcag-a8">
          44 week stay
        </th>
        <td headers="wcag-college wcag-a8 wcag-numberofweek">
          44
        </td>
        <td headers="wcag-college wcag-a8 wcag-weeklyrent">
          552 - 712*
        </td>
        <td headers="wcag-college wcag-a8 wcag-estimatedtotal">
          34,072 - 45,017
        </td>
      </tr>
      <tr>
        <th id="wcag-homestay">
          Homestay
        </th>
        <th id="wcag-a9">
          Living with a local family
        </th>
        <td headers="wcag-homestay wcag-a9 wcag-numberofweek">
          40
        </td>
        <td headers="wcag-homestay wcag-a9 wcag-weeklyrent">
          240 - 290*
        </td>
        <td headers="wcag-homestay wcag-a9 wcag-estimatedtotal">
          16,000 - 20,700
        </td>
      </tr>
    </tbody>
  </table>
</div>