html - Table coming on the Top of Div; how to bring the Table down -
I have div in html and after div and I have another div in which HTML table is the table above div How to bring it down
& lt; Div id = 'testupdate2' & gt; MINIMAR: ". $ Num." & Lt; / Div & gt; & Lt; Div id = "test" & gt; & Lt; Table cells = 0 cell padding = 0 border = 0 width = "100%" & gt; & Lt; Tbody & gt; & Lt; TR & gt; & Lt; Td id = "header" class = "navUPD" & gt; My number & lt; / Td> & Lt; / TR & gt; & Lt; TR & gt; & Lt; Td id = "tls" square = "navy" & gt; My description & lt; / Td> & Lt; / TR & gt; & Lt; TR & gt; & Lt; Td id = "mgmnt" class = "navOFFTDUPD" & gt; ADDR. MGMT & lt; / Td> & Lt; / TR & gt; & Lt; / Tbody & gt; & Lt; / Table & gt; & Lt; / Div & gt;
How to bring the table to DIV?
"post-text" itemprop = "text">
your & lt; To push your table from the top of div id = "test" & gt;
You can use CSS padding:
#test {padding-top: 20px; }
Or alternatively:
# test table {padding-top: 20px; }
Comments
Post a Comment