Posts by Felipe Maia • 349 points
14 posts
-
1
votes2
answers76
viewsA: Gradient Animation CSS
I honestly don’t know what it is that your code doesn’t work. But I copied the "working" code you posted and replaced the colors #ee7752, #e73c7e, #23a6d5, #23d5ab on it. It also replaces H1 {} and…
-
0
votes2
answers70
viewsA: The tag label does not let break line easily within it
In your code, you try to use a behavior on a label label which won’t work as you expect because you haven’t set what your block view should look like. Swap label for div may work, but will lose the…
-
1
votes1
answer35
viewsA: Check if ip is already registered in the database
I don’t know what version of your PHP, but in the version I use (version 7) this code of yours does not work. If you consult the manual, you will have Warning This extension has been deprecated…
-
1
votes1
answer1333
viewsA: How to let a component occupy 100% of the remaining height
For the rectangle to occupy a space defined by height: 100% or any other value, it is necessary that the block containing it also has a defined height, whatever it is. Would that be:…
-
2
votes1
answer258
viewsA: What is Lambda calculus?
Calculation λ The λ calculation is a single transformation rule, variable substitution and a single function definition scheme. It was introduced in the 1930s by Alonzo Church as a way to formalize…
mathematicsanswered Felipe Maia 349 -
1
votes2
answers61
viewsA: Positioning of a div
This is a very interesting problem and you can notice with it how sometimes working with height can be fun. Since you want a chess-like layout, we responsibly cannot guarantee that by decreasing the…
-
3
votes1
answer51
viewsA: How do I take the information selected by the user and assign it to a variable?
I’ll list for you some ways to do it. Using the onchange function() function carro() { var carros = document.getElementById("carros"); var result = carros.options[carros.selectedIndex].value;…
-
0
votes1
answer60
viewsA: What are content categories for?
To HTML5 documentation describes the Content Categories in this way: Each element in HTML falls into zero or more categories that group elements with similar characteristics. If you read this…
htmlanswered Felipe Maia 349 -
0
votes2
answers1345
viewsA: Click on the Link and open a player below it
Your problem is this:: "Given a list of links, when clicking them, below the clicked item a video will be displayed" For this, you will need to control the display blocks of the page, so that the…
-
0
votes2
answers359
viewsA: Send multiple checkbox values to modal bootstrap
$('#teste').on('shown.bs.modal', function () { $('#myInput').trigger('focus') }) $(document).ready(function(){ …
javascriptanswered Felipe Maia 349 -
3
votes1
answer496
viewsA: Change css when the site opens in ie/edge
I found these posts that might help you: problems-with-layout-e-css-in-ie-10-E-11 hack-css-to-work-only-on-internet-edge how-to-write-a-css-hack-for-ie-11? (post in English)…
-
1
votes1
answer40
viewsA: Content in the same line when pulling mysqli
Example: $frase = "Bom dia Bruno Agradecemos pelo seu contato! \nSegue em anexo orçamento para 140 camisetas modelo tradicional em tecido 100% poliamida UNI. Estampa em até 4 cores, 2 cores peito, 2…
-
-1
votes2
answers37
viewsA: Table does not want to be vertical
It’s very simple, buddy. The code in the structure below will generate a horizontal table. Each new block of TR codes will generate a row with cells. <tr> <td></td> ...…
-
2
votes1
answer238
viewsQ: What happens to variable i in this algorithm? Sequence inversion algorithm
Good evening. I started to study data structure in support of the book Data Structure and Algorithms 2nd ed (SZWARCFITER/MARKENZON). The first algorithm of the book deals with reversing the elements…