Skip to content

Instantly share code, notes, and snippets.

View Q4U's full-sized avatar

Q4U GmbH Q4U

View GitHub Profile
@Q4U
Q4U / gist:8707290
Created January 30, 2014 12:15
CSS: vertical centering
position: relative;
top: 50%;
transform: translateY(-50%);
@Q4U
Q4U / gist:8599910
Created January 24, 2014 15:48
HTML: meta viewport
<meta name="viewport" content="width=device-width">
@Q4U
Q4U / gist:8598869
Created January 24, 2014 15:00
CSS: .clearfix
.clearfix:after {
content: "";
display: table;
clear: both;
}
@Q4U
Q4U / gist:8578521
Created January 23, 2014 13:35
HTML: BIC input
<input type="text" name="bic" pattern="^([a-zA-Z]){6}([0-9a-zA-Z]){2}([0-9a-zA-Z]{3})?$" placeholder="BIC" title="Ein BIC hat 8 oder 11 Stellen">
@Q4U
Q4U / gist:8578496
Created January 23, 2014 13:33
HTML: IBAN input
<input type="text" name="iban" pattern="^DE\d{2}[ ]\d{4}[ ]\d{4}[ ]\d{4}[ ]\d{4}[ ]\d{2}|DE\d{20}$" placeholder="IBAN" title="Eine deutsche IBAN hat 22 Stellen und beginnt mit DE">