Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div>rgb(255, 125, 0)</div> <div>rgb(100%, 50%, 0%)</div>
</body>
</html>
 
BODY {
  padding-top: 30px;
  text-align: center;
}
DIV {
  display: inline-block;
  width: 10em;
  height: 10em;
  margin: 0 2em;
  vertical-align: middle;
  line-height: 10em;
  font-size: 1.2em;
  text-shadow: 3px 0 rgb(100%, 35%, 0%);
  color: #FFF;
  }
DIV:nth-child(1) {
  background: rgb(255, 125, 0);
  }
DIV:nth-child(2) {
  background: rgb(100%, 50%, 0%);
  }
Output

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

Dismiss x