Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html ng-app>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.0.7/angular.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <div ng-app>
  <p ng-class="{strike: strike, bold: bold, red: red}">Hello world</p>
  <input type="checkbox" ng-model="bold"> bold
  <input type="checkbox" ng-model="strike"> strike
  <input type="checkbox" ng-model="red"> red
  <hr>
  <p ng-class="style">Using String Syntax</p>
  <input type="text" ng-model="style" placeholder="Type: bold strike red">
  <hr>
  <p ng-class="[style1, style2, style3]">Using Array Syntax</p>
  <input ng-model="style1" placeholder="Type: bold"><br>
  <input ng-model="style2" placeholder="Type: strike"><br>
  <input ng-model="style3" placeholder="Type: red"><br>
</div>
</body>
</html>
 
.strike {
  text-decoration: line-through;
}
.bold {
    font-weight: bold;
}
.red {
    color: red;
}
Output

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

Dismiss x
public
Bin info
annaismepro
0viewers