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

python - mat is not a numerical tuple : openCV error -

c# - MSAA finds controls UI Automation doesn't -

wordpress - .htaccess: RewriteRule: bad flag delimiters -