Horje
how to make color squares in angular Code Example
how to make color squares in angular
<div><div class='box red'></div>= Super Fast Trains</div>
<br>
<div><div class='box green'></div>= Mail/Express Trains</div>
<br>
<div><div class='box blue'></div>= Local/ Passenger Trains</div>


// CSS

.box {
  float: left;
  height: 20px;
  width: 20px;
  margin-bottom: 15px;
  border: 1px solid black;
  clear: both;
}

.red {
  background-color: red;
}

.green {
  background-color: green;
}

.blue {
  background-color: blue;
}




Javascript

Related
lesson-3 Code Example lesson-3 Code Example
world biggest company in terms of revenue Code Example world biggest company in terms of revenue Code Example
install svelte routing Code Example install svelte routing Code Example
angular observable examplE Code Example angular observable examplE Code Example
node start is too slow windows 10 Code Example node start is too slow windows 10 Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
8