Skip to content

Instantly share code, notes, and snippets.

View alitahashakir's full-sized avatar

Ali Taha Shakir alitahashakir

View GitHub Profile
@alitahashakir
alitahashakir / limit lines form css
Last active November 13, 2015 08:11
limit lines form css with ellipsis ...
.searchDesc {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1; /* number of lines to show */
line-height: 1; /* fallback */
max-height: 1*1; /* fallback */
}
@alitahashakir
alitahashakir / element in center of screen
Last active November 18, 2015 06:13
element in center of screen
.centered {
position: fixed;
/* any positioin other than static can be use */
top: 50%;
left: 50%;
/* bring your own prefixes */
transform: translate(-50%, -50%);
}