Posts by Cláudio Silva • 16 points
2 posts
-
0
votes3
answers602
viewsA: How to align vertically and horizontally element within a Row in Bootstrap?
Try the Alignment vertical of the bootstrap link: https://getbootstrap.com/docs/4.4/utilities/vertical-align/ or in the div 'pai' you put in the css = align-itens: center; then he lines up all the…
-
0
votes2
answers49
viewsA: Search by full name - Reactjs
test the array using regex like this: let name = ["Vitor Santos", "Vitor silva", "antonia carolina"]; let stringTest = 'vitor'; // now let’s test and bring the results in a simpler way let result =…