Posts by Adriano Leal • 401 points
7 posts
-
1
votes1
answer299
viewsA: Problem when aligning Footer
Well, I don’t know if it’s the best alternative, but the solution I found was this: <body> <style> * { margin: 0; } html, body { height: 100%; } .page { min-height: 100%; height: auto…
-
0
votes2
answers471
viewsA: Does not work Focus in input
I honestly haven’t been able to understand the reason for the problem, but apart from the classes col-Xs-12 col-Sm-12 col-Md-12 of all its inputs will work. Edited Okay, as I understand it, you…
twitter-bootstrapanswered Adriano Leal 401 -
-1
votes3
answers2040
viewsA: PHP Table background color
Use CSS instead of the attribute bgcolor. In HTML 5 this attribute is no longer supported for <td>, <tr>, and <table> as reported on W3schools' own website…
-
1
votes1
answer1531
viewsA: Add elements to a textarea in checkbox order
Using jQuery that you search for should be much easier and optimized, but based on what I understood you want and the script found in the last link as an example, you could do something like this:…
-
6
votes3
answers407
viewsA: Generate setters only in class constructor or generate outside constructor
This should vary depending on the functionality of your class. Do the attributes of this class need to be changed in the constructor? Note that it is not necessary to contain all attributes as…
-
5
votes2
answers148
viewsA: What precautions should be taken when sending an email via PHP
I believe that the precautions to be taken when sending emails through some web system are those well-known common precautions: validate whether the typed email really follows an e-mail pattern (via…
-
11
votes1
answer834
viewsA: Is it advantageous to use the MVC standard in small applications?
In my opinion it is true, precisely for the organization and the ease (theoretically) in maintaining the code afterwards. I don’t know if you already develop using some framework that MVC values,…