sata-image($image, $display: false)

Set background and width/height property of container.

$image - url of image
$display - display css property (if it false, not set display property)

Examples

Show image 11932.jpg (282x158)

Source

#sata-image-example {
	@include sata-image("11932.jpg");
}

Result

#sata-image-example {
	background: url('/assets/img/11932.jpg?1365412404');
	width: 282px;
	height: 158px;
}