max border width

by desandro

HTML

<div id="demo""></div>

CSS

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

#demo {
  width: 100px;
  border-style: solid;
  border-color: red;
  border-bottom-width: 9999px;
}

JavaScript

var demo = document.getElementById('demo'),
    borderWidth = getComputedStyle( demo ).borderBottomWidth,
    output = document.createElement('p');

output.textContent = 'border-bottom-width is set as 9999px but is rendered as ' + borderWidth;

document.body.insertBefore( output, demo );

console.log( demo.style );