Posts by Matheus França • 53 points
8 posts
-
-2
votes1
answer35
viewsA: Add sequential ID to DIV and then hide
As far as I can understand, you intend to hide the Divs that parent input elements and would like when an input is hidden the div is also. Based on this assumption, consider putting id on Ivs…
-
1
votes1
answer60
viewsA: Minimum and Maximum Range Filter - JSON
From what I understand you may have a small data structure as well as a gigantic size. I think the most appropriate way to do this type of filtering would be in the back end instead of the front…
-
-3
votes1
answer36
viewsA: html/css - image alignment
you may be solving your problem using a new layout system in the market called CSS Grid layout, with it you can define where your item will be and still gain an advantage of having a more…
-
0
votes1
answer71
viewsA: How to make a table that only accepts number 1 to 100?
I believe your error was in the &&(E) operator instead of ||(OR). I made a practical example to show you better. I separated the files so the elements are in a file html and the JS is in…
-
0
votes1
answer23
viewsQ: Request get Failing
Hello, I have a problem that is affecting my development. I am developing an application that uses Axios and Vue.js and I wish to make a first get on a data that will go to a props and in that it…
-
0
votes1
answer39
viewsA: Nesting (nesting) is a specific feature of SASS?
The @media is both in css and in Sass it serves to give responsiveness to your page. Sass is nothing more than a css pre-processor, it changes the way you write css a little bit (I would say it…
-
1
votes3
answers71
viewsA: How to take larger amount of each product and show within a list from the largest to the smallest?
I believe that "Quantity" should be an Array with the numbers you want, for example: "quantity": [1, 2, 3, 4, 5] In your case: "items": [ { "description": "Smartphone Motorola", "id": "123",…
-
-4
votes1
answer172
viewsQ: How to handle css with Vue
I have a question, I wish to manipulate the css of the element body(more specifically the font-size) using Vue.js only I don’t find a way to do this. What I wish is that when I press the button it…