Posts by Eric Clero • 107 points
4 posts
-
0
votes0
answers24
viewsQ: How do I apply the style of a component to the Facebook Login button of the React-facebook-login?
I’m using the package react-facebook-login to create a Facebook login on a page. It already had a stylized button (component). However when I use the Login button component of the package, it is…
-
2
votes1
answer134
viewsQ: How to perform mathematical operation within the MVC view
I am creating a web application MVC 5 for studies and I have a question: it is possible to perform a mathematical operation in view? I wanted to multiply line 16. What would be the solution?…
-
6
votes1
answer472
viewsQ: How to reduce the spacing between printed characters with t in C++?
I wanted to place the columns closer so that it doesn’t happen as in figure 2. int i,j,elemento; for(i=0; i<elemento; i++){ for(j=-elemento; j<=elemento; j++){ if(i >= abs(j)) {…
-
1
votes1
answer150
viewsQ: How do I margin between an image and an HTML list?
I tried that, but the ordered list is still pasted to the image ol { margin-left: 5px; } figure { margin-left: auto; margin-right: 20px; }…