jquery - Feed Style Similar to this -


i've been pondering on around 3-4 hours , can't wrap head around how it. i've been looking @ this feed , trying replicate wordpress blog i'm working on, i've looked around numerous jquery plugins none seem keep them in rows - appreciated.

the problem having feed on link above has lovely , nice laid out feed, it's not cascading pinterest, keen eye might spot each row aligned , start @ same position , end @ same position images variable heights.

tl;dr

  • wanting feed similar link supplied.
  • static row height
  • variable image height inside row.

any great.

the best way make table.

<table>     <tr> //a table row         <td>content</td>         <td>content</td>         <td>content</td>     </tr> </table> 

then css:

table {     position:relative;     table-layout:fixed;     width:100%;     margin:1em auto 1em auto; } td {     border-color:transparent;     width:20%;     height:450px;     padding:0;     margin:5 } 

you can play around css, table best kind of thing.


Comments

Popular posts from this blog

javascript - How to synchronize the Three.js and HTML/SVG coordinate systems (especially w.r.t. the y-axis)? -

javascript - How do I find how many occurences are there of a highlighted string, and which occurence is it? -

java - Reading data from multiple zip files and combining them to one -