Questions tagged as 'html'

4
answers

Do not show "overflow" arrows

I have a td with overflow . <td><div><?php echo $objProg->getagen(); ?></div></td> Css: td div { width:100%; height: 30px; overflow: auto; } With this CSS above it looks like this:...
asked by 08.04.2016 / 16:54
2
answers

how to reference external css in an HTML page

I'm learning html but I do not know why I'm not getting it calls a css file, which I created separate for my html. <html> <head> <meta charset="UTF-8"> <title> aula 5 </title> <link...
asked by 29.03.2016 / 06:58
2
answers

Digitalbush plugin for masks CNPJ and CPF in the same field

I use the plugin below in my html fields to make the mascara, I came up with the need to put the cnpj and cpf masks in the same fields, does anyone know how to do this with this plugin? link $("#cpf").mask("999.999.999-99"); $("#cnpj").ma...
asked by 07.04.2016 / 20:29
2
answers

Using HTML5 tags as CSS3 selectors is a good practice?

Using HTML5 tags names like most CSS selectors is a good practice? Whether it's because I'm not creative to give names to ids or classes, or because I want to leave the HTML code as clean as possible, leaving only the structure and sema...
asked by 08.12.2016 / 16:38
2
answers

Is there a standard for structuring a website in HTML?

I'm creating a website and I have the following structure: <body> <div class="container"> <?php require_once('includes/header.php'); ?> <?php require_once('includes/main.php'); ?> </div> <?php requir...
asked by 15.02.2017 / 14:42
3
answers

Make Div appear 4 seconds after the site is loaded [duplicate]

How can I make a div appear 4 seconds after the site loads?     
asked by 24.06.2016 / 04:39
3
answers

Extract only the numbers from a Javascript text box

How do I extract the numeric value of a text box in javascript, eg: valor imputado = 1a321q00 valor extraido e adicionado na variável = 132100 Thanks to anyone who helps me     
asked by 11.08.2016 / 22:25
2
answers

Editable table in PHP [closed]

I have a table with a list of companies. I want from a click on the table line to load a modal with the information of this company. Any suggestions on how to do it?     
asked by 23.05.2016 / 22:47
3
answers

Remove "select" arrow [duplicate]

Code: <select class="backcolorselect" id="st" name=""> <option class="backcolorselect" value="Sim">Sim</option> <option class="backcolorselect" value="Não">Não</option> </select> I need to r...
asked by 10.06.2016 / 14:25
1
answer

How to monitor the change of an input type text field?

I need to monitor the change of the contents of a text field, the function I use is this: $(document).ready(function() { $("#nome").on("keyup change click focus", function() { $(".classenome").val($(this).val()); }); });...
asked by 10.06.2016 / 23:40