Questions tagged as 'html'

1
answer

Image overlay without position: absolute

I have tried to position two images, this way The tear is a picture .png This is the html structure <div class="intertTa"> <div class="ta borderes ico"> <img src="..."> <img class="bad" src=...
asked by 21.12.2018 / 19:32
2
answers

Validate input type numeric?

How to validate a numerical type field so that it does not accept the minus sign (-) or the plus sign (+). because it only accepts numbers but between numbers it also accepts + and less        
asked by 18.11.2016 / 23:03
2
answers

Fade only the background of an HTML element

I want the text not to be lost, only the red background color should be lost. Here my code: $('#confirmacion').fadeIn(9500); $('#confirmacion').fadeOut(9500); #confirmacion{ background-color: red; color: #000; height: 2em;...
asked by 23.01.2017 / 04:56
1
answer

Fill HTML table using 3 PHP Arrays

I write about a problem when displaying an HTML table using 3 different arrays. I explain my problem a bit: I have an arrangement where I get some ID's, these ID's should go in the header of the HTML table, the result will always be 33 r...
asked by 13.06.2017 / 14:23
1
answer

Side headboards on tables

How can I create left side headings in tables? For example, I have the following table: <table border="1" cellspacing="0"> <thead> <tr> <th>Titulo 1</th> <th>Titulo 2</...
asked by 01.03.2017 / 17:38
2
answers

remove row from html table with Jquery or JS

How to delete the row of an html table with js or jquery or css ?, I have a table that shows product records of a Query SQL to my BD, I add a button where it opens a modal to register some data belonging to that record , when I have finished fil...
asked by 04.05.2016 / 23:16
2
answers

Other uses of the link tag

Apart from the traditional use of cascading style sheets: <link href="style.css" rel="stylesheet"/> Is there any other use of the <link> element that is useful in a web page? Does the HTML5 standard give any light about i...
asked by 26.02.2016 / 03:08
3
answers

Change color javascript text

I want to change several color labels h1 and h3 when I pass over them and in this way I only change one, each one has its ID. <!doctype html> <html> <head> <meta http-equiv="content-type" content="text/html"/>...
asked by 21.02.2018 / 18:18
2
answers

Center Section Boostrap

Currently I have the following Form <section class="contact bg-primary" id="contact"> <form id="main-contact-form" class="contact-form" name="contact-form" action="enviar.php" method="POST"> <div class="col-sm-5 col...
asked by 14.03.2018 / 17:33
1
answer

Separate 3 select into a Form

I have a problem with 3 select and a label inside my form, I do not find the way to separate them to give them the correct positions HTML code <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <li...
asked by 31.08.2018 / 16:07