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 class="first">Hello g World</div>
  <div class="second">Hello g World</div>
  <div class="third">Hello g World</div>
  <div class="fourth">Hello g World</div>
  <div class="fifth">Hello g World</div>
  
</body>
</html>
 
div {
  background-color: rgba(255, 0, 0, 0.3);
  margin-top: 50px;
  height: 20px; /* This is fixed! */
  text-indent: -9999px;
  position: relative;
}
div:before {
   content: attr(title); 
   text-indent: 9999px; 
   position: absolute;
   bottom: -0.24em;
}
.first {
  font-size: 10px;
}
.second {
  font-size: 16px;
}
.third {
  font-size: 22px;
}
.fourth {
  font-size: 30px;
}
.fifth {
  font-size: 36px;
}
 
var divs = document.getElementsByTagName("div"); 
for (var i = 0; i < divs.length; i++) {  
  
    var txt = divs[i].innerHTML;
    divs[i].setAttribute('title', txt);
  
}
      
   
  
Output

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

Dismiss x
public
Bin info
anonymouspro
0viewers