What fresh hell is THIS now? - Patrick Lauke
@karlgroves @Jnurthen I've used multiple tbodies, it was basically our standard for lists of products where the product differences are each a tbody but we could not squeeze listy lists inside a table.
@gerbenvandijk Jason Kiss recently twotted the most accessible datepickers he could find: https://twitter.com/jkiss/status/720720467829493760 and https://twitter.com/jkiss/status/720724410429100032 and https://twitter.com/jkiss/status/720731347556257792
@elisa I dunno if you can force this however the Fronteers people (who place their videos on Vimeo of their conferences) have used a built-in Amara captioning setup, it was somehow connected with Vimeo. https://twitter.com/hdv/status/690481621393391616
ul
>li
?Table
> tr
> td
?<div>
<tr>
with the e-mail row above it, and have some toggling logic. Be wary of using aria-expanded
correctly
[jitendra] I mean any other solution which visually mimic the table look and we can add ARIA attributes to make it accessible.
I know semantic html is the best and ARIA should be avoided but want to know if this will be better in this case
<ul>
of <dl>
s to achieve the same thing... but a <table>
is the semantic way to go here. Easy to make, can be made responsive, can have the toggling you want...
<ul>
of <article>
and only show the non-content details by default, adding an expand/collapse content button, etc etc
<tr>
which is hard to style if needed
<div>
which makes styling easy
<tbody>
and <tr>
is quite limited