track display #4

Open
opened 2017-11-13 15:04:43 +00:00 by agp8x · 0 comments

magnify small images:

<div class="test">
	<img src="images/... style="height: 200px;">
</div>

}
.test {
    width: 32px;
    height: 32px;
    display: inline-block;
    position: relative;
}
.test img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    bottom: 0px;
}
.test img:hover {
    max-width: inherit;
    max-height: inherit;
}
magnify small images: ``` <div class="test"> <img src="images/... style="height: 200px;"> </div> } .test { width: 32px; height: 32px; display: inline-block; position: relative; } .test img { max-width: 100%; max-height: 100%; position: absolute; bottom: 0px; } .test img:hover { max-width: inherit; max-height: inherit; } ```
Sign in to join this conversation.
No Label
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: ma/project#4
There is no content yet.