When doing development and you need to dimensions to a block element in CSS its pretty tedious to write: .block { width: 200px; height: 200px; } I use LessCSS as my css pre-processor so wrote a handy little mixin to shorten this: .size(@w, @h) { width: @w; height: @h; } Then to use it in […]