Day: April 6, 2015

  • Responsive Tabs

    Here is an example of tabs that change into an accordion on mobile. The HTML structure for the desktop tabs is like so: <ul class=”classA”>     <li class=”current”><a>tab 1</a></li>     <li><a>tab 2</a></li>     <li><a>tab 3</a></li> </ul> ..and the HTML for the tab contents including the mobile tabs: <ul class=”classB”>         <li><a href=”#”>mob tab 1</a>        …