<div style="text-align: center;">
<div style="display: inline-block; text-align: left;">
Centered<br />
Content<br />
That<br />
Is<br />
Left<br />
Aligned
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container border border-danger"> | |
<form #maria="ngForm"> | |
<input type="text" | |
class="form-control" | |
required | |
[(ngModel)]="test" | |
name="firstName" | |
#first="ngModel" | |
minlength="3" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function randomIntFromInterval(min,max) | |
{ | |
return Math.floor(Math.random()*(max-min+1)+min); | |
} |
NewerOlder