rowGrid icon indicating copy to clipboard operation
rowGrid copied to clipboard

css example

Open marin-df opened this issue 9 years ago • 0 comments

Hello, Thank you for this code ! I think it would be good to include in the sample code this css to the case where the image has a border ( another display is not good )

.item img {
max-width: 100%;
max-height: 100%;
vertical-align: bottom;
}

=>

.item img {
max-width: 100%;
max-height: 100%;
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box
}

I have not found any reason to:

.first-item {
clear: both;
}

marin-df avatar Aug 03 '16 08:08 marin-df