Tag: layout

  • Quick Tip: LESS Mixins for Pure CSS Pinterest / Masonry style grid layout

    Pinterestย popularized theย masonry grid style layout. Hereโ€™s a simple solution for a masonry layout built with pure CSS3, and no javascript or floats. [css] // Parent Element, or Container .grid (@columns: 3, @gap: 10px, @width: 100%) { -moz-column-count: @columns; -moz-column-gap: @gap; -webkit-column-count: @columns; -webkit-column-gap: @gap; column-count: @columns; column-gap: @gap; width: @width; } // Child Element, or…

  • Google+ will improve your social media experience, even if you don’t use it.

    The Question My friend at Good Web Workย asked the question,โ€To what problem is Google+ a solution?โ€. I started to write a comment on his post, but after the scroll bar popped up on the comment form realized this was blog post materialย . I have no idea what Iโ€™m talking about I havenโ€™t used Google+ yet…

  • How to Write Object Oriented CSS

    * Image taken from the cover art of the world-famous Tetris[1] video game. Objects Shmobjects. The first time I heard about Object Oriented CSS was from a tutorial onย NetTuts[2]. At the time, I viewed OOCSS as just another random framework somebody was imposing on the web community. I had not given it much thought since…

  • Free Desktop Wallpaper Background: Black Boxes

    My latest free desktop wallpaper design is an arrangement of dark gray blocks on a black background similar in layout to Piet Mondrian[1]โ€˜s Composition II in Red, Blue, and Yellow[2], that he painted in 1930. Iโ€™m not saying its as revolutionary as his painting, only that it shares the same balance of visual weight. If…