-
Standardista – Estelle Weyl
You’re looking to improve the diversity of your technical conference. Well, let me google that for you!
Two years ago, I organized a conference called Confident-Coding. We had an open CFP, but only se...
-
CSS Gradients
Color Stops
Hard Color Stops
.rainbow {
background-image:
linear-gradient(top,
red 20%,
orange 20%,
orange 40%,
yellow 40%,
yellow 60%,
green 60%,
g...
-
HTML5 Web Forms
Custom Error message
function validate() {
var input = document.getElementById('b');
var validityState_object = input.validity;
if(validityState_object.valueMissing) {
input.setCustomValidi...
-
CSS3 Gradients
These gradients should work in Firefox 3.6+, Chrome and Safari 4+. Opera 11 displays linear gradients only, and will hopefully support the radial gradients soon. Click on "download css" to download th...
-
Mobile HTML5: Chapter Files
Mobile HTML5: Chapter Files
iTunes respectively. Links on Android for Android applications will open a pop-up that
asks if you want to follow the link or open the link in Google Play.
The...
-
CSS: Flexbox
CSS: Flexbox
stretch;
inline |
inline-reverse | block | block-reverse
Actual Flex Box
So simple...
Ordering: order
align-content
none
row,
flex-grow
Positive number determines how much flex...