Posts by Rodrigo A. Santos • 189 points
8 posts
-
2
votes2
answers356
viewsQ: Changing the variable name during a repeat loop in Javascript
I want to make an indefinite number of ajax requests, according to the number of urls passed as parameter, I just need to know how to increment the (name) of the variable so that the answer does not…
-
0
votes4
answers1260
viewsA: Footer always at the bottom of the page
The cat jump is in the new vh css measure (probably Viewheight) see this example with flex box *{padding: 0px; margin: 0px} css for zeroing margin and padding! otherwise the footer passes the…
-
1
votes4
answers21716
viewsA: "Height: 100%" does not occupy all height
Use the new CSS measure vh (probably View Height). I’m wearing it like this with flex box: #div-corpo{ height:100vh; display: flex; flex-direction: column; } #div-height-100%{ flex-grow: 1; } This…
cssanswered Rodrigo A. Santos 189 -
0
votes1
answer1558
viewsQ: apache 2.4.23 configuration to work on a home network!
I’m trying to serve an application on a home network (windows10) however the tips I find on the web to change apache settings don’t work, probably because they refer to earlier versions of Apache…
-
0
votes1
answer88
viewsA: Action form not found Not Found!
The name in the file is reversed in the question Controllerregister.php when the project is Registercontroller.php, I don’t know if that’s all but fix it there!
-
1
votes1
answer203
viewsQ: SQL select with two or more occurrences of a table in the same row?
In a relational bank terminations have 1 contract, the contract has 1 real estate and two people(landlord and renter) how do I prepare the SELECT to return these two people on the same line? SELECT…
mysqlasked Rodrigo A. Santos 189 -
5
votes18
answers139957
viewsA: What is the best way to center an element vertically and horizontally?
Just one more suggestion in front of so many; Use flex box; .flex-box{ display: flex; justify-content: center; align-items: center; min-height: 400px; } <div class="flex-box">…
-
2
votes6
answers19014
viewsA: I want to align my menu to the center
The question is old but the doubt still persists, as this is one of the first posts that appear in google, it does not cost to update, especially if you still do not know flex-box! put the menu…