HTML prototyping tip:

Test your text layout, word-wrap and line-heights by making all contents editable via 4 lines of JavaScript.


var a = document.querySelectorAll('*');

for (var i = 0; i < a.length; i++) {
  var n = a[i];
  n.setAttribute('contenteditable', true);
}