Change the position of a table in page using CSS -


i have table , @ end of page:

<table class="fes-display-field-table fes-submission-form-display-field-table"> </table> 

now want move table between:

<h2 class="section-title"><span>giới thiệu về dịch vụ</span></h2> table here <article id="post-8306" class="post-8306 type-download status-publish format-standard hentry...> 

is there way css? here css file: https://jsfiddle.net/wcq1ft3k/

this want. have give position property table style.i concerned position table. try code. change values of left , top. think table class name mytable

<html> <head> <title></title> </head> <style type="text/css">   .mytable{     border: 1px solid black;     position: absolute;     top: 200px;     left: 300px;   } </style> <body>    <table class="mytable">     <tbody>       <tr>       <th style="width:200px; border-right:1px solid black;">one</th>       <th style="width:200px">two</th>       </tr>       <tr>       <td>detail one</th>       <td>detail two</th>       </tr>     </tbody>   </table>    </body> </html> 

hope you.


Comments

Popular posts from this blog

c++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -