jquery - On minimizing the screen, the table should shrink -


i have table like

<form id="form1">     <table style="width:75%;font-size:15px;" align="center" id="info" > ... </table> </form> 

on shrinking browser, want fit table accordingly. tried keeping position: relative. still doesn't work. leads ?

you have give width of table directly.

<form id="form1">           <table width="500" border="1" align="left" id="info" >        <tr>          <td>1</td>          <td>2</td>      </tr>      <tr>        <td>3</td>        <td>4</td>      </tr>  </table>  </form>


Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -