Questions tagged as 'html'

2
answers

Erase all information in the table the last inserted id

How do I delete the table in the database all data, in php, by the last id inserted? For example in the table the last ID is 37, where it has the name, age, etc ..., I want to delete all of this ID, make that line disappear. My question is not...
asked by 24.05.2018 / 12:27
1
answer

Contents overlaps the fixed menu when scrolling the page

I have tried to put z-index: 2 into <header></header> , but it did not work @charset "UTF-8"; body { display: flex; min-height: 100vh; width: 100%; margin: 0; padding: 0; align-items: center;...
asked by 27.05.2018 / 20:44
3
answers

Key event mode

Can I call a modal boot vpue using a keyevent in VUEJS ?? I do not want any kind of onscreen button or inputs, I want to know if I can call the modal just by pressing a specific key. Like for example the ALT.     
asked by 08.10.2018 / 22:34
2
answers

Resize image automatically

When programming a web page via PC, I added an image map whose image was relatively large, occupying the width of the entire page. The problem is that when you access a smaller screen, such as a notebook screen, the image does not resize along w...
asked by 22.03.2018 / 14:40
2
answers

Opacity only in li and not in span

I have the following code HTML : <li class="item produtoDesabilitado" id="1028" style="border: 2px solid rgb(255, 255, 255) !important; height: 346px; padding-bottom: 22px;"> <div class="product-image-wrapper" style="max-wid...
asked by 20.02.2018 / 18:25
2
answers

Tell the disabled options of a select with jquery

How can I count the options with the disabled option selected and efficiently with jquery?     
asked by 28.10.2017 / 18:27
2
answers

Non-filtering search filter

So, I have a page with a search form pro user selecting what will appear in his table. When the user clicks the submit button, another page should appear with the table properly filtered. This is the code for the page that will open: <!-...
asked by 26.10.2017 / 17:47
2
answers

Refresh div with checked checkbox value

I have these checkboxes on my page <input type="checkbox" name="dezenas[]" value="01" /> <input type="checkbox" name="dezenas[]" value="02" /> <input type="checkbox" name="dezenas[]" value="03" /> <input type="checkbox" na...
asked by 03.11.2017 / 15:37
2
answers

How can I style the select tag arrow in Firefox?

I have this little problem. I have a layout that needs to be exactly the same as I did, inside it the input definitions of type text and select . In Google Chrome, everything worked wonderfully, since the arrow was cute, as in th...
asked by 25.10.2017 / 16:44
1
answer

How can I split the parcels by adding just exact values for each parcel, and will one parcel be left with an extra value?

Example: The division of 100 (entry value) by 3 (quantity of parcels) is equal to 33.33, where 3 * 33.33 = 99.99. Being that the right is to stay a parcel with the value 33.34. Java code public void parcelar() { listaParcela = new...
asked by 22.10.2017 / 04:37