Questions tagged as 'table'

2
answers

How to avoid abrupt page break when printing a html table

I'm developing an html page, to be printed later. But when printing I noticed that the breaking of pages in the middle of tables, are getting strange and abrupt, as you can see in the following image: SohowcouldItreatsothatatthetimeofprint...
asked by 13.02.2015 / 18:03
3
answers

border-radius in table does not work CSS

I'm trying to put a border-radius on my table so that the 4 edges of it are rounded. If I move the tr / th / td border-radius will change the radius of the ballots and not just those of the table, which is my goal and if I change the radius of t...
asked by 22.04.2015 / 18:57
3
answers

Structure table day and time (calendar type)

I need to create a table that contains days and times of operation of an establishment, a sort of agenda. This table should represent every day of the week and each day contain the opening and closing times. The challenge is to create this table...
asked by 07.11.2016 / 15:37
2
answers

creation of tables with margin between them

I want to create a table spice but with spacing between each rectangle. What I have created is: <table border="1" margin="2"> <tr> <td>Célula 1</td> <td>Célula 2</td> </tr> <tr> &l...
asked by 19.12.2014 / 11:18
3
answers

By what means can you remove dynamic cell inserted in the HTML table

Script var opt = document; function inserirLinha(id) { var newRow = opt.createElement('tr'); newRow.insertCell(0).innerHTML = '<input type="button" value="X" onclick="removeLinha(this)" />...
asked by 03.06.2018 / 16:05
1
answer

Get value from a table row if checkbox is checked

I have the following table which is built from a database entity. HTML: <table class="table table-hover" id="produtostab"> <thead> <tr> <th>Descrição</th>...
asked by 21.08.2014 / 20:18
1
answer

Mounting an HTML table from another records with JQuery and C #?

I need to compose / generate a new table in html where the new records will come from a selection of <input type checkbox> in another table in the same html page displayed in a modal, see image. Once the user clicks on import, you...
asked by 08.07.2016 / 19:48
3
answers

CSS - Align image inside table with inline css

I need to align one image to the text of the other cell in the table. The css is inline. Here is the code: <table> <tbody> <tr> <td style="display: inline-block; width: 50px; padding-left: 30px;">...
asked by 13.04.2016 / 21:26
2
answers

Space between specific columns in the table without creating a false td

I'm looking for a solution to leave a pre-determined space between columns in my table, without using <td> or <th> false (with nothing written, only with a style padding). It is desired to place spaces of 5px between the...
asked by 27.10.2015 / 15:20
2
answers

Problem with table width

Good people, I have a table like this: The"thead" part where it says Dorsal, Name ... etc is a table (table1) and the rest is another table (table2), basically they are two tables that I tried to do with them if they aligned using width bu...
asked by 12.06.2015 / 13:43