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>
  
  <table border="1">
    <tr>
      <td>
        <div></div>
        <span></span>
        <span></span>
        <span></span>
      </td>
      
      <td>
        <div></div>
        <span></span>
        <span></span>
        <span></span>    
      </td>
    </tr>
  </table>
</body>
</html>
 
table {
  width: 100%;
}
div {
  background-color: cyan;
  height: 200px;
  width: 100%;
}
span {
  background-color: green;
  border: 1px solid red;
  display: block;
  height: 20px;
  margin-top: 5px;
  width: 100%;
}
 
document.addEventListener('click',function (e) {
  alert('You clicked ' +e.target);
  e.preventDefault();
},false);
Output 300px

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

Dismiss x
public
Bin info
anonymouspro
0viewers