Questions tagged as 'html'

2
answers

Doubt with table in div css

I'm setting up a table in div and css, the problem and I need the div div-table-row to have the size of the other divs. but it is giving a line break. How do I resolve this? Follow my code: .div-table{ display:table;...
asked by 08.03.2016 / 19:05
2
answers

Dives daughters extrapolate parent div

I'm trying to make the DIV parent be populated by all DIVS daughters, however I've tried several things and it does not work. It always ends the DIV father being extrapolated by his daughters. EDIT: I tested my example code and it looks like...
asked by 14.03.2017 / 18:54
2
answers

$ _post returns empty, I tried everything, guys. Please help me.

I have this problem and I can not solve it, the form is correct but when the user clicks the save button, the file save.php is triggered normally, but loses the contents of $ _POST .... Help me! p> index.php file <!DOCTYPE html> <ht...
asked by 16.07.2018 / 03:15
2
answers

ngFor does not give the expected result

My ngFor is not showing all the data that arrives, but in the console it shows all the results. I get some data from the API and it has a sales data and a meta data, they come in an array and I use the forEach in them, and if it hits the targ...
asked by 16.08.2018 / 18:12
3
answers

Text abbreviation td does not work

I would like to abbreviate a <td> : <td> TextoTextoTextoTextoTextoTexto </td> Displaying only: TextoTexto... I tried to use style="text-overflow:ellipsis" but it did not work. Detail: I need to be in...
asked by 21.08.2018 / 14:20
2
answers

.htaccess automatically change .php and .html extensions?

I'm using my htaccess like this # Hide .html or .php extension ## External Redirect RewriteCond %{THE_REQUEST} ^[A-Z]{3,}\s([^.]+)\.php [NC] RewriteRule ^ %1 [R,NC] ## ## Internal Redirect RewriteCond %{REQUEST_FILENAME}.php -f RewriteRule ^...
asked by 23.10.2017 / 18:43
2
answers

How to submit form but remove null fields

How do I send a form for example via GET or POST, but without sending fields that are null? To make it clear, I want the form to be submitted even with some empty fields, but that these empty fields are not sent. Let's suppose I have the f...
asked by 19.09.2017 / 20:59
2
answers

Why does the loop not print until the last value was entered as a limit?

I made a code that prints a sequence of numbers, from the number entered to the end, but when I print it the last number is not appearing. Example: first number entered is 3 and second is 7. The sequence would be 3, 4, 5, 6, 7, but 7 does not...
asked by 25.10.2018 / 03:22
3
answers

How to add an attribute with JSTL under one condition?

<div class="body"> <selected name ="multSelectSkill" id="optgroup" class="ms" multiple="multiple"> <optgroup label="GRUPO 1"> <c:forEach items="${skillsOperador}" var="skillsOperador"> <option va...
asked by 09.08.2017 / 14:30
3
answers

input datetime-local value

Hello friends, how are you? In my database I have the date time like this: 2018-06-22 12:00:00 in the final html looks like this: <input type="datetime-local" class="form-control" id="data_contratado" name="data_contratado" value="201...
asked by 22.06.2018 / 20:58