Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
  
  <div id="box" class="box"></div>
  <output id="op"><strong>:before font is</strong>: </output>
  
  <output id="op2"><strong>:after position is</strong>: </output>
  
  <output id="op3"><strong>:before background is</strong>:</output>
</body>
</html>
 
var b = document.getElementById('box'),
    op = document.getElementById('op'),
    op2 = document.getElementById('op2'),
    op3 = document.getElementById('op3');
op.innerHTML += getComputedStyle(b, ':before').fontFamily;
op2.innerHTML += getComputedStyle(b, ':after').position;
op3.innerHTML += getComputedStyle(b, ':after').background;
// uncomment below to view full object on empty pseudo-element
// console.log(getComputedStyle(document.getElementsByTagName('body')[0], ':before'));
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
ImpressiveWebspro
0viewers