Questions tagged as 'html'

5
answers

Vertically center a form

I have the following screen and can not vertically center this form below on the screen. I set it to position: absolute; and add top:20% and it does not move! Followmyhtml:<header><divclass="local"> <img src=...
asked by 13.03.2014 / 06:22
2
answers

Bold "b" does not apply in a range

In table , if I apply bold ( <b> ) out of cells ( <td> ), it does not work: <table> <tr> <b> <td>Cell A</td> <td>Cell B</td> <td>Cell C<...
asked by 13.08.2018 / 14:46
2
answers

Link href to id div

I know that we can make links by directing click href to an id of the page using # . #content1, #content2, #content3, #content4 { height: 50vh; border: 1px solid red; } <a href="#content1"> CONTEUDO 1</a>...
asked by 13.09.2018 / 15:11
3
answers

Select option from a select

I have the following HTML: <select id="faturamento-mes-referencia"> <option value="1">Janeiro</option> <option value="2">Fevereiro</option> <option value="3">Março</option> <option v...
asked by 10.02.2017 / 16:42
2
answers

-ms-flexbox and flexbox do not work in Internet Explorer

I'm having trouble identifying what I should do to fix this error - I recently used CSS Progress Wizard , it works perfectly in google chrome and other browsers: ButwhenIlookatinternetexplorer9,ithassomeerrors: Here is the code for CSS...
asked by 17.06.2015 / 17:49
3
answers

How to humanize dates in javascript

Given a date ex: 5/24/1982, how to turn into years, months and days? In the above example it would be converted to 33 years 1 month and 1 day. The idea is to do everything in Javascript.     
asked by 25.06.2015 / 14:38
2
answers

Is it correct to use the Input tag inside a Label tag?

I was taking a look at the W3Schools tutorial, where I'm teaching you how to use% type% input in Bootstrap. According to one of the examples, I saw the following code: <div class="checkbox"> <label><input type="ch...
asked by 25.10.2016 / 13:03
3
answers

How to get element above Jquery?

I have the following elements: <p class="id-task">5</p> <p class="status-change"> <i id="test-task" class="fa fa-flask fa-lg" aria-hidden="true"></i> </p> I'm trying to get the number of <p cla...
asked by 02.12.2016 / 17:20
4
answers

Making a HTML list searchable

I'm trying to put a search on the page, similar to the CTRL + F of the browser. I have a list of links and this search would only point to this list. Here is a print for better understanding.     
asked by 28.01.2015 / 20:47
2
answers

Test if an input of the type radiobutton is selected in PHP

I created a table that is the summary of all my previous calculations and in this table I created a field where I placed a radial input to be able to select one of the calculated options. I need to identify which of the inputs was clicked, using...
asked by 17.11.2015 / 16:48