I have been learning HTML+CSS using codecademy.com
It was told in beginning, how to arrange images in grid/tables manner. It is done by using <table>
, <tr>
, <td>
tags.
You have to put <a>
and <img src ="">
in <td>
tags.
But I noticed today images.google.com (search quinoa) doesn't show picture in tables.
There is <div>
for every thumbnail. Why?
- Does it make everything appear faster, i.e.
div
s are faster thantd
s? - No one uses tables anymore now a days. It is hard to read, manage HTML code?
- There other coding strategy?